Skip to content

Commit 0b924ac

Browse files
authored
fix: allow all Python 3.6 versions (#38)
Allow all Python 3.6 versions, as some operating systems (e.g. Ubuntu 20.04) use an older Python 3.6 version by default. Signed-off-by: Roald Nefs <[email protected]>
1 parent a7a838b commit 0b924ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def get_long_description() -> str:
4141
packages=find_packages(),
4242
include_package_data=True,
4343
install_requires=["cryptography>=3.3.1", "requests>=2.25.1"],
44-
python_requires=">=3.6.12",
44+
python_requires=">=3.6",
4545
entry_points={},
4646
classifiers=[
4747
"Development Status :: 1 - Planning",

0 commit comments

Comments
 (0)