Skip to content

Commit

Permalink
Dropped support for Python 3.5 - part 2
Browse files Browse the repository at this point in the history
This PR moves the six package from requirenments.txt to
dev-requirements.txt. This was intended to be done in the
earlier commit on this topic, but was forgotten.

Signed-off-by: Andreas Maier <maiera@de.ibm.com>
  • Loading branch information
andy-maier committed Oct 22, 2023
1 parent 8614ae3 commit e60e962
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 4 additions & 0 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
# of appearance.
#

# Six
six>=1.14.0; python_version <= '3.9'
six>=1.16.0; python_version >= '3.10'

# PEP517 package builder, used in Makefile
build>=0.5.0
# build up to version 0.9 requires pep517>=0.9.1
Expand Down
2 changes: 0 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ prometheus-client>=0.9.0
urllib3>=1.25.9; python_version <= '3.9'
urllib3>=1.26.5; python_version >= '3.10'
jsonschema>=3.2.0
six>=1.14.0; python_version <= '3.9'
six>=1.16.0; python_version >= '3.10'
Jinja2>=2.11.3

# PyYAML 5.3.x has wheel archives for Python 2.7, 3.5 - 3.9
Expand Down

0 comments on commit e60e962

Please sign in to comment.