diff --git a/release_to_pypi.sh b/release_to_pypi.sh index ccd4487f..915e57f0 100755 --- a/release_to_pypi.sh +++ b/release_to_pypi.sh @@ -10,7 +10,7 @@ rm -Rfv build/ # python2.5 setup.py bdist_egg # rm -Rfv build/ -for version in 2.7 3.4 3.5 3.6 3.7; do +for version in 2.7 3.4 3.5 3.6 3.7 3.8; do if [ -a "`which python$version`" ]; then python$version setup.py bdist_egg python$version setup.py bdist_wheel diff --git a/setup.py b/setup.py index daf01186..5ffef004 100644 --- a/setup.py +++ b/setup.py @@ -80,6 +80,8 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', ], setup_requires=setup_requirements,