diff --git a/.travis.yml b/.travis.yml index 001f974..11c3e4b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,5 +2,6 @@ language: python python: - "2.7" - "3.6" + - "3.9" script: - python -m unittest discover test \ No newline at end of file diff --git a/setup.py b/setup.py index 15c65b8..1eb8447 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md", "r") as fh: setuptools.setup( name="pyembroidery", - version="1.4.31", + version="1.4.32", author="Tatarize", author_email="tatarize@gmail.com", description="Embroidery IO library", @@ -13,13 +13,16 @@ setuptools.setup( long_description_content_type="text/markdown", url="https://github.com/EmbroidePy/pyembroidery", packages=setuptools.find_packages(), - classifiers=( + classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", 'Topic :: Software Development :: Libraries :: Python Modules' - ), + ], ) \ No newline at end of file