Skip to content

Commit

Permalink
Remove indications of support for Python <3.7 and bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
dbieber committed Sep 20, 2024
1 parent b3e1748 commit 47c8714
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Exit when any command fails.
set -e

PYTHON_VERSION=${PYTHON_VERSION:-2.7}
PYTHON_VERSION=${PYTHON_VERSION:-3.7}

pip install -U -r .github/scripts/requirements.txt
python setup.py develop
Expand Down
6 changes: 1 addition & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
'python-Levenshtein',
]

VERSION = '0.6.0'
VERSION = '0.7.0'
URL = 'https://github.com/google/python-fire'

setup(
Expand All @@ -63,11 +63,7 @@
'License :: OSI Approved :: Apache Software License',

'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
Expand Down

0 comments on commit 47c8714

Please sign in to comment.