forked from perdoch/hesaff
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
28 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
# 1.19.2 was important for some versions of tensorflow | ||
numpy>=1.23.5 ; python_version < '4.0' and python_version >= '3.11' # Python 3.11+ | ||
numpy>=1.21.1 ; python_version < '3.11' and python_version >= '3.10' # Python 3.10 | ||
numpy>=1.19.3 ; python_version < '3.10' and python_version >= '3.9' # Python 3.9 | ||
numpy>=1.19.2 ; python_version < '3.9' and python_version >= '3.8' # Python 3.8 | ||
numpy>=1.14.5 ; python_version < '3.8' and python_version >= '3.7' # Python 3.7 | ||
numpy>=1.12.0 ; python_version < '3.7' and python_version >= '3.6' # Python 3.6 | ||
numpy>=1.11.1 ; python_version < '3.6' and python_version >= '3.5' # Python 3.5 | ||
numpy>=1.11.1 ; python_version < '3.5' and python_version >= '3.4' # Python 3.4 | ||
numpy>=1.11.1 ; python_version < '3.4' and python_version >= '2.7' # python 2.7 | ||
numpy>=1.26.0 ; python_version < '4.0' and python_version >= '3.12' # Python 3.12+ | ||
numpy>=1.24.0 ; python_version < '3.12' and python_version >= '3.11' # Python 3.11 | ||
numpy>=1.21.6 ; python_version < '3.11' and python_version >= '3.10' # Python 3.10 | ||
numpy>=1.19.3 ; python_version < '3.10' and python_version >= '3.9' # Python 3.9 | ||
numpy>=1.19.2 ; python_version < '3.9' and python_version >= '3.8' # Python 3.8 | ||
numpy>=1.19.2 ; python_version < '3.8' and python_version >= '3.7' # Python 3.7 | ||
numpy>=1.19.2 ; python_version < '3.7' and python_version >= '3.6' # Python 3.6 | ||
|
||
ubelt >= 1.2.3 | ||
|
||
ubelt >= 1.3.4 | ||
# smc.freeimage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,24 @@ | ||
ubelt >= 1.2.3 | ||
utool >= 2.1.7 | ||
ubelt >= 1.3.4 | ||
utool >= 2.2.0 | ||
|
||
xdoctest>=0.14.0 | ||
xdoctest >= 1.1.3 | ||
|
||
# Pin maximum pytest versions for older python versions | ||
# 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. | ||
# xdev availpkg pytest | ||
pytest>=6.2.5 ; python_version >= '3.10.0' # Python 3.10+ | ||
pytest>=6.2.5 ; python_version < '3.10.0' and python_version >= '3.7.0' # Python 3.7-3.9 | ||
pytest>=6.2.5 ; python_version < '3.7.0' and python_version >= '3.6.0' # Python 3.6 | ||
|
||
## | ||
#pytest-cov >= 2.6.0 ; python_version >= '3.7.0' | ||
#pytest-cov >= 2.6.0, <= 2.8.1 ; python_version < '3.7.0' and python_version >= '3.6.0' | ||
pytest>=7.4.4 ; python_version < '4.0' and python_version >= '3.13' # Python 3.13+ | ||
pytest>=7.4.4 ; python_version < '3.13' and python_version >= '3.12' # Python 3.12 | ||
pytest>=7.4.4 ; python_version < '3.12' and python_version >= '3.11' # Python 3.11 | ||
pytest>=7.4.4 ; python_version < '3.11' and python_version >= '3.10' # Python 3.10 | ||
pytest>=7.4.4 ; python_version < '3.10' and python_version >= '3.9' # Python 3.9 | ||
pytest>=7.4.4 ; python_version < '3.9' and python_version >= '3.8' # Python 3.8 | ||
pytest>=7.4.4 ; python_version < '3.8' and python_version >= '3.7' # Python 3.7 | ||
pytest>=6.2.5 ; python_version < '3.7' and python_version >= '3.6' # Python 3.6 | ||
|
||
pytest-cov>=3.0.0 ; python_version >= '3.6.0' # Python 3.6+ | ||
pytest-cov>=2.9.0 ; python_version < '3.6.0' and python_version >= '3.5.0' # Python 3.5 | ||
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 | ||
pytest-timeout>=1.4.2 | ||
|
||
# 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 | ||
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 | ||
coverage>=5.3.1 ; python_version < '3.6' and python_version >= '3.5' # Python 3.5 | ||
coverage>=4.3.4 ; python_version < '3.5' and python_version >= '3.4' # Python 3.4 | ||
coverage>=5.3.1 ; python_version < '3.4' and python_version >= '2.7' # Python 2.7 | ||
coverage>=4.5 ; python_version < '2.7' and python_version >= '2.6' # Python 2.6 | ||
coverage[toml]>=7.3.0 ; python_version < '4.0' and python_version >= '3.12' # Python 3.12 | ||
coverage[toml]>=6.5.0 ; python_version < '3.12' and python_version >= '3.10' # Python 3.10-3.11 | ||
coverage[toml]>=6.5.0 ; python_version < '3.10' and python_version >= '3.9' # Python 3.9 | ||
coverage[toml]>=6.5.0 ; python_version < '3.9' and python_version >= '3.8' # Python 3.8 | ||
coverage[toml]>=6.5.0 ; python_version < '3.8' and python_version >= '3.7' # Python 3.7 | ||
coverage[toml]>=6.1.1 ; python_version < '3.7' and python_version >= '3.6' # Python 3.6 | ||
|
||
requests>=2.25.1 | ||
requests >= 2.27.1 |