Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Erotemic committed Apr 26, 2024
1 parent 70d3e89 commit 23a6900
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 18 deletions.
15 changes: 4 additions & 11 deletions requirements/runtime.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# python ~/local/tools/supported_python_versions_pip.py networkx

six>=1.16.0 ; python_version < '4.0' and python_version >= '3.12' # Python 3.12+
six >= 1.10.0 ; python_version < '3.12' # Python 3.11-
six>=1.16.0 ; python_version < '4.0' and python_version >= '3.12' # Python 3.12+
six>=1.10.0 ; python_version < '3.12' # Python 3.11-

parse >= 1.6.6
requests >= 2.27.1
Expand All @@ -28,7 +28,7 @@ gitpython>=2.1.12 ; python_version < '3.4' and python_version >= '3.0' # P
gitpython>=2.1.4 ; python_version < '3.0' and python_version >= '2.7' # Python 2.7
gitpython>=2.1.8 ; python_version < '2.7' and python_version >= '2.6' # Python 2.6

ubelt>=1.0.0 ; python_version >= '3.6' # Python 3.6+
ubelt>=1.3.4 ; python_version >= '3.6' # Python 3.6+
ubelt>=0.8.1 ; python_version < '3.6' and python_version >= '2.7' # Python 2.7

#pandas >= 1.4.1
Expand All @@ -40,14 +40,6 @@ pandas>=1.5.0 ; python_version < '3.12' and python_version >= '3.11' # Py
pandas>=1.3.5 ; python_version < '3.11' and python_version >= '3.10' # Python 3.10
pandas>=1.4.0 ; python_version < '3.10' and python_version >= '3.9' # Python 3.9
pandas>=1.4.0 ; python_version < '3.9' and python_version >= '3.8' # Python 3.8
pandas>=1.2.0 ; python_version < '3.8' and python_version >= '3.7.1' # Python 3.7.1
pandas>=1.1.3 ; python_version < '3.7.1' and python_version >= '3.7' # Python 3.7
pandas>=1.0.0 ; python_version < '3.7' and python_version >= '3.6.1' # Python 3.6.1
pandas>=0.20.3 ; python_version < '3.6.1' and python_version >= '3.6' # Python 3.6
pandas>=0.25.0 ; python_version < '3.6' and python_version >= '3.5.3' # Python 3.5.3
pandas>=0.18.1 ; python_version < '3.5.3' and python_version >= '3.5' # Python 3.5
pandas>=0.18.1 ; python_version < '3.5' and python_version >= '3.4' # Python 3.4
pandas>=0.20.1 ; python_version < '3.4' and python_version >= '2.7' # Python 2.7

networkx>=2.8 ; python_version < '4.0' and python_version >= '3.11' # Python 3.11+
networkx>=2.7 ; python_version < '3.11' and python_version >= '3.8' # Python 3.8-3.11
Expand All @@ -60,4 +52,5 @@ networkx>=1.11 ; python_version < '3.5' and python_version >= '2.7' # Py
lockfile >= 0.10.2 ; python_version<'3.0'
futures >= 1.0.0 ; python_version<'3.0'


timerit>=1.0.1
15 changes: 8 additions & 7 deletions requirements/tests.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ xdoctest >= 1.1.3
# TODO: determine what the actual minimum and maximum acceptable versions of
# pytest (that are also compatible with xdoctest) are for each legacy python
# major.minor version.
# See ~/local/tools/supported_python_versions_pip.py for helper script
pytest>=8.1.1 ; python_version < '4.0' and python_version >= '3.13' # Python 3.13+
pytest>=8.1.1 ; python_version < '3.13' and python_version >= '3.12' # Python 3.12
pytest>=8.1.1 ; python_version < '3.12' and python_version >= '3.11' # Python 3.11
Expand All @@ -21,15 +20,17 @@ pytest-cov>=2.9.0 ; python_version < '3.6.0' and python_version >= '3
pytest-cov>=2.8.1 ; python_version < '3.5.0' and python_version >= '3.4.0' # Python 3.4
pytest-cov>=2.8.1 ; python_version < '2.8.0' and python_version >= '2.7.0' # Python 2.7

# python ~/local/tools/supported_python_versions_pip.py pytest-timeout
# python ~/local/tools/supported_python_versions_pip.py codecov
# xdev availpkg pytest-timeout
# xdev availpkg codecov
pytest_timeout>=2.3.1 ; python_version < '4.0' and python_version >= '3.12' # Python 3.13+
pytest_timeout>=1.4.2 ; python_version < '3.12' # Python 3.11-

# python ~/local/tools/supported_python_versions_pip.py xdoctest
# python ~/local/tools/supported_python_versions_pip.py coverage
coverage>=6.1.1 ; python_version >= '3.10' # Python 3.10+
coverage>=5.3.1 ; python_version < '3.10' and python_version >= '3.9' # Python 3.9
# xdev availpkg xdoctest
# xdev availpkg coverage
coverage>=7.3.0 ; python_version < '4.0' and python_version >= '3.12' # Python 3.12+
coverage>=7.0.0 ; python_version < '3.12' and python_version >= '3.11' # Python 3.11
coverage>=6.1.1 ; python_version < '3.11' and python_version >= '3.10' # Python 3.10
coverage>=5.3.1 ; python_version < '3.10' and python_version >= '3.9' # Python 3.9
coverage>=6.1.1 ; python_version < '3.9' and python_version >= '3.8' # Python 3.8
coverage>=6.1.1 ; python_version < '3.8' and python_version >= '3.7' # Python 3.7
coverage>=6.1.1 ; python_version < '3.7' and python_version >= '3.6' # Python 3.6
Expand Down

0 comments on commit 23a6900

Please sign in to comment.