diff --git a/MANIFEST.in b/MANIFEST.in index 52919fc..062a6bc 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -4,9 +4,11 @@ include CHANGES include LICENSE include README +include pyte/py.typed + recursive-include docs *.rst include docs/conf.py recursive-include examples *.py recursive-include tests *.py -recursive-include tests/captured +recursive-include tests/captured * diff --git a/README b/README index 437612c..0488de1 100644 --- a/README +++ b/README @@ -9,7 +9,7 @@ | |_) || |_| || |_| __/ | .__/ \__, | \__|\___| | | __/ | - |_| |___/ 0.8.1 + |_| |___/ 0.8.2 What is ``pyte``? diff --git a/docs/conf.py b/docs/conf.py index b589c99..be596f9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,9 +50,9 @@ # built documents. # # The short X.Y version. -version = '0.8.1' +version = '0.8.2' # The full version, including alpha/beta/rc tags. -release = '0.8.1' +release = '0.8.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 8a1673f..8271fe0 100755 --- a/setup.py +++ b/setup.py @@ -22,9 +22,11 @@ "Intended Audience :: Developers", "Operating System :: OS Independent", "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Terminals :: Terminal Emulators/X Terminals", @@ -32,12 +34,12 @@ setup(name="pyte", - version="0.8.1", + version="0.8.2", packages=["pyte"], install_requires=["wcwidth"], setup_requires=["pytest-runner"], tests_require=["pytest"], - python_requires=">=3.7", + python_requires=">=3.8", platforms=["any"], package_data={"pyte": ["py.typed"]},