Skip to content

Commit

Permalink
Fix dependencies versions for python > 3.8
Browse files Browse the repository at this point in the history
Signed-off-by: Sylvain Leclerc <[email protected]>
  • Loading branch information
sylvlecl committed Jul 9, 2024
1 parent 246ad42 commit d601e72
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,16 @@ pydantic~=1.9.0
PyQt5~=5.15.6
python-json-logger~=2.0.7
python-multipart~=0.0.5
PyYAML~=5.4.1
# See https://github.com/yaml/pyyaml/issues/724#issuecomment-1638801106
PyYAML>=5.3.1; python_version <= '3.5'
PyYAML>=5.3.1,!=5.4.0,!=5.4.1; python_version >= '3.6' and python_version <= '3.11'
PyYAML>=5.3.1,!=5.4.0,!=5.4.1,!=6.0.0; python_version >= '3.12'
redis~=4.1.2
requests~=2.27.1
SQLAlchemy~=1.4.46
starlette~=0.17.1
tables==3.6.1
tables==3.6.1; python_version <= '3.8'
tables==3.9.2; python_version > '3.8'
typing_extensions~=4.7.1
uvicorn[standard]~=0.15.0
xlsxwriter~=3.2.0

0 comments on commit d601e72

Please sign in to comment.