Skip to content

Commit

Permalink
add frozen reqs for specific python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
bgunnar5 committed Feb 15, 2024
1 parent 4b8fab5 commit 6ffefc7
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 26 deletions.
35 changes: 22 additions & 13 deletions requirements/dev.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,23 @@
# Development dependencies.
build
black
dep-license
flake8
isort
pytest
pylint
twine
sphinx>=2.0.0
alabaster
johnnydep
deepdiff
pytest-order
alabaster==0.7.13; python_version <= "3.8"
alabaster==0.7.16; python_version >= "3.9"
black==23.3.0; python_version == "3.7"
black==24.2.0; python_version >= "3.8"
build==1.0.3
deepdiff==6.7.1
dep-license==2.5.0
flake8==3.9.2; python_version == "3.7"
flake8==7.0.0; python_version >= "3.8"
isort==5.11.5; python_version == "3.7"
isort==5.13.2; python_version >= "3.8"
johnnydep==1.20.4
pylint==2.17.7; python_version == "3.7"
pylint==3.0.3; python_version >= "3.8"
pytest==7.4.4; python_version == "3.7"
pytest==8.0.0; python_version >= "3.8"
pytest-order==1.2.0
Sphinx==5.3.0; python_version == "3.7"
Sphinx==7.1.2; python_version == "3.8"
Sphinx==7.2.6; python_version >= "3.9"
twine==4.0.2; python_version == "3.7"
twine==5.0.0; python_version >= "3.8"
32 changes: 19 additions & 13 deletions requirements/release.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
cached_property
celery[redis,sqlalchemy]>=5.0.3
coloredlogs
cryptography
importlib_metadata<5.0.0; python_version == '3.7'
importlib_resources; python_version < '3.7'
maestrowf>=1.1.9dev1
numpy
parse
psutil>=5.1.0
pyyaml>=5.1.2
tabulate
redis>=4.3.4
cached-property==1.5.2
celery[redis,sqlalchemy]==5.2.7; python_version == "3.7"
celery[redis,sqlalchemy]==5.3.6; python_version >= "3.8"
coloredlogs==15.0.1
cryptography==42.0.2
importlib-metadata==4.13.0; python_version == "3.7"
importlib-metadata==7.0.1; python_version >= "3.8"
importlib-resources==5.12.0; python_version == "3.7"
importlib-resources==6.1.1; python_version == "3.8"
maestrowf==1.1.9
numpy==1.21.6; python_version == "3.7"
numpy==1.24.4; python_version == "3.8"
numpy==1.26.4; python_version >= "3.9"
parse==1.20.1
psutil==5.9.8
PyYAML==6.0.1
redis==5.0.1
SQLAlchemy==2.0.27
tabulate==0.9.0

0 comments on commit 6ffefc7

Please sign in to comment.