Skip to content

Commit 22fee97

Browse files
committed
setup: remove upper bound limit on python_requires
Setting upper bound version constraints in libraries is a source of problems for users of those libraries, see: https://iscinumpy.dev/post/bound-version-constraints/ The intent of the python-tuf version constraint is to ensure we're using a version of Python which supports all the features we rely on, this is a better fit for a lower limit. Suggested-by: Ofek Lev <ofekmeister@gmail.com> Signed-off-by: Joshua Lock <jlock@vmware.com>
1 parent 430bdf5 commit 22fee97

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ license_files = LICENSE LICENSE-MIT
3434

3535
[options]
3636
packages = find:
37-
python_requires = ~=3.7
37+
python_requires = >=3.7
3838
install_requires =
3939
requests>=2.19.1
4040
securesystemslib>=0.22.0

0 commit comments

Comments
 (0)