Skip to content

Commit 99ef1d2

Browse files
authored
chore: Bound maximum supported Python version (#465)
* chore: bound maximum supported Python version * Bound supported Python versions claim in README
1 parent 015a73e commit 99ef1d2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ dependencies.
5252

5353
Supported Python Versions
5454
^^^^^^^^^^^^^^^^^^^^^^^^^
55-
Python >= 3.6
55+
Python >= 3.6, < 3.9
5656

5757
Unsupported Python Versions
5858
^^^^^^^^^^^^^^^^^^^^^^^^^^^

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
namespace_packages=namespaces,
121121
install_requires=dependencies,
122122
extras_require=extras,
123-
python_requires=">=3.6",
123+
python_requires=">=3.6, <3.9",
124124
include_package_data=True,
125125
zip_safe=False,
126126
)

0 commit comments

Comments
 (0)