Skip to content

Commit

Permalink
fix(deps): relax dependency requirement for python 3.11
Browse files Browse the repository at this point in the history
Signed-off-by: Sylvain Leclerc <[email protected]>
  • Loading branch information
sylvlecl committed Oct 29, 2024
1 parent 5474832 commit dc9b09d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ paramiko~=3.4.1
pycparser~=2.21
PyNaCl~=1.5.0
PyYAML~=5.4.1; python_version <= '3.9'
PyYAML~=5.3.1; python_version > '3.9'
PyYAML~=6.0.2; python_version > '3.9'
six~=1.16.0
tinydb~=4.7.1
tqdm~=4.64.1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# Warning: this package is used as a library, so you should not constrain the versions too much.
install_requires = [
"paramiko~= 3.4.1",
"PyYAML < 6.0", # required version for AntaREST
"PyYAML",
"tinydb < 4.8",
"tqdm < 4.65",
# frozen requirements for AntaREST:
Expand Down

0 comments on commit dc9b09d

Please sign in to comment.