Merge pull request #134 from EmbroidePy/ZHS

Version Bump 1.4.32
pull/135/head 1.4.32
tatarize 2021-12-20 02:28:49 -08:00 zatwierdzone przez GitHub
commit e13ec9e6df
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 7 dodań i 3 usunięć

Wyświetl plik

@ -2,5 +2,6 @@ language: python
python: python:
- "2.7" - "2.7"
- "3.6" - "3.6"
- "3.9"
script: script:
- python -m unittest discover test - python -m unittest discover test

Wyświetl plik

@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
setuptools.setup( setuptools.setup(
name="pyembroidery", name="pyembroidery",
version="1.4.31", version="1.4.32",
author="Tatarize", author="Tatarize",
author_email="tatarize@gmail.com", author_email="tatarize@gmail.com",
description="Embroidery IO library", description="Embroidery IO library",
@ -13,13 +13,16 @@ setuptools.setup(
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
url="https://github.com/EmbroidePy/pyembroidery", url="https://github.com/EmbroidePy/pyembroidery",
packages=setuptools.find_packages(), packages=setuptools.find_packages(),
classifiers=( classifiers=[
'Development Status :: 5 - Production/Stable', 'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers', 'Intended Audience :: Developers',
"Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7", "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", "License :: OSI Approved :: MIT License",
"Operating System :: OS Independent", "Operating System :: OS Independent",
'Topic :: Software Development :: Libraries :: Python Modules' 'Topic :: Software Development :: Libraries :: Python Modules'
), ],
) )