Skip to content

Commit

Permalink
Release 0.8.2
Browse files Browse the repository at this point in the history
This is a technical release which adds py.typed to the sources and the wheel.

Closes #169.
  • Loading branch information
superbobry committed Nov 12, 2023
1 parent a1c089e commit fae13af
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 3 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -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 *
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
| |_) || |_| || |_| __/
| .__/ \__, | \__|\___|
| | __/ |
|_| |___/ 0.8.1
|_| |___/ 0.8.2


What is ``pyte``?
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,22 +22,24 @@
"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",
]


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"]},

Expand Down

0 comments on commit fae13af

Please sign in to comment.