Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add python_requires >= 3.9 #130

Merged
merged 2 commits into from
Sep 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# 2023-09-10 1.0.0
# 2023-09-10 1.0.1

This release adds a python_requires >= 3.9 to setup.py to prevent old python
versions from picking up the newly incompatible version.

# 2023-09-10 1.0.0 [yanked]

This release was yanked, because it introduced incompatibilities with old
versions of python but did not specify a python_requires line.

To prevent

* Support for Python 2 was dropped
* Support for compressed fonts
Expand Down
2 changes: 1 addition & 1 deletion pyfiglet/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.0.0'
__version__ = '1.0.1'
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[build-system]
requires = ["setuptools>=68.0.0"]
build-backend = "setuptools.build_meta:__legacy__"
build-backend = "setuptools.build_meta:__legacy__"
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ def get_version():

setup(
name='pyfiglet',
python_requires=">=3.9",
version=get_version(),
description='Pure-python FIGlet implementation',
long_description=open("README.md").read(),
Expand Down