Skip to content

Commit

Permalink
update req versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Erotemic committed Apr 28, 2024
1 parent a5627e4 commit 750e4d0
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 45 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
requires = [ "setuptools>=41.0.1", "wheel", "scikit-build>=0.9.0", "numpy", "ninja", "build"]

[tool.cibuildwheel]
build = "cp37-* cp38-* cp39-* cp310-* cp311-*"
build = "cp37-* cp38-* cp39-* cp310-* cp311-* cp312-*"
build-frontend = "build"
skip = "pp* cp27-* cp34-* cp35-* cp36-* *-musllinux_* *i686*"
build-verbosity = 1
Expand Down
20 changes: 9 additions & 11 deletions requirements/runtime.txt
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
51 changes: 18 additions & 33 deletions requirements/tests.txt
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

0 comments on commit 750e4d0

Please sign in to comment.