From c4bd14b45a3a68574cd30ce6699312ebf66ae0b3 Mon Sep 17 00:00:00 2001 From: David Bieber Date: Mon, 28 Nov 2022 16:13:34 -0500 Subject: [PATCH] Python Fire Version Bump (#416) Bumps version to 0.5.0 in preparation for next release --- .github/scripts/build.sh | 4 +--- fire/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/scripts/build.sh b/.github/scripts/build.sh index c05ea1c3..6fd8f73b 100755 --- a/.github/scripts/build.sh +++ b/.github/scripts/build.sh @@ -30,9 +30,7 @@ pip install ipython python -m pytest # Now run the tests with IPython. pylint fire --ignore=test_components_py3.py,parser_fuzz_test.py,console if [[ ${PYTHON_VERSION} == 3.7 ]]; then + # Run type-checking. pip install pytype; -fi -# Run type-checking. -if [[ ${PYTHON_VERSION} == 3.7 ]]; then pytype -x fire/test_components_py3.py; fi diff --git a/fire/__init__.py b/fire/__init__.py index 9c34a5af..4cc76210 100644 --- a/fire/__init__.py +++ b/fire/__init__.py @@ -21,4 +21,4 @@ from fire.core import Fire __all__ = ['Fire'] -__version__ = '0.4.0' +__version__ = '0.5.0' diff --git a/setup.py b/setup.py index e1efe1ab..f1f91103 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ 'python-Levenshtein', ] -VERSION = '0.4.0' +VERSION = '0.5.0' URL = 'https://github.com/google/python-fire' setup(