Skip to content

Commit 76ec7ed

Browse files
authored
Simplify Requirement Constraints (#163)
This includes the remove of the upper boundary. Signed-off-by: Lukas Kämmerling <lukas.kaemmerling@hetzner-cloud.de>
1 parent 32bd2ec commit 76ec7ed

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
with open("CHANGELOG.rst") as changelog_file:
1111
changelog = changelog_file.read()
1212

13-
requirements = ["future>=0.17.1,<1", "python-dateutil>=2.7.5,<3", "requests>=2.20,<3"]
13+
requirements = ["future>=0.17.1", "python-dateutil>=2.7.5", "requests>=2.20"]
1414

1515
extras_require = {"docs": ["Sphinx==1.8.1", "sphinx-rtd-theme==0.4.2"]}
1616

@@ -33,7 +33,7 @@
3333
"Programming Language :: Python :: 3.9",
3434
"Programming Language :: Python :: 3.10",
3535
],
36-
python_requires="!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <3.11",
36+
python_requires=">3.5",
3737
description="Official Hetzner Cloud python library",
3838
install_requires=requirements,
3939
extras_require=extras_require,

0 commit comments

Comments
 (0)