Skip to content

Commit

Permalink
update pytest req
Browse files Browse the repository at this point in the history
  • Loading branch information
Erotemic committed Apr 13, 2024
1 parent 394f103 commit 439ddd1
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion requirements/docs.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
sphinx >= 4.3.2
sphinx >= 5.0.1
sphinx-autobuild >= 2021.3.14
sphinx_rtd_theme >= 1.0.0
sphinxcontrib-napoleon >= 0.7
Expand Down
9 changes: 4 additions & 5 deletions requirements/optional.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# tqdm
xxhash>=3.0.0 ; python_version < '4.0' and python_version >= '3.11' # Python 3.11+
xxhash>=3.4.1 ; python_version < '4.0' and python_version >= '3.12' # Python 3.12+
xxhash>=3.2.0 ; python_version < '3.12' and python_version >= '3.11' # Python 3.11
xxhash>=3.0.0 ; python_version < '3.11' and python_version >= '3.10' # Python 3.10
xxhash>=2.0.2 ; python_version < '3.10' and python_version >= '3.9' # Python 3.9
xxhash>=1.4.3 ; python_version < '3.9' and python_version >= '3.8' # Python 3.8
Expand All @@ -22,16 +22,15 @@ lru-dict>=1.1.8 ; python_version < '3.7' and python_version >= '3.6' #

sphinx >= 5.0.1
setproctitle >= 1.2.3
# sphinxcontrib-napoleon >= 0.7
objgraph >= 3.5.0

h5py>=3.8.0 ; python_version < '4.0' and python_version >= '3.11' # Python 3.11+
h5py>=3.10.0 ; python_version < '4.0' and python_version >= '3.12' # Python 3.12+
h5py>=3.8.0 ; python_version < '3.12' and python_version >= '3.11' # Python 3.11
h5py>=3.7.0 ; python_version < '3.11' and python_version >= '3.10' # Python 3.10
h5py>=3.7.0 ; python_version < '3.10' and python_version >= '3.9' # Python 3.9
h5py>=3.7.0 ; python_version < '3.9' and python_version >= '3.8' # Python 3.8
h5py>=3.7.0 ; python_version < '3.8' and python_version >= '3.7' # Python 3.7
h5py>=3.7.0 ; python_version < '3.7' and python_version >= '3.6' # Python 3.6
h5py>=3.7.0 ; python_version < '3.6' and python_version >= '3.5' # Python 3.5


pint>=0.18
10 changes: 7 additions & 3 deletions requirements/tests.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,13 @@ xdoctest >= 1.1.2
# 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>=6.2.5 ; python_version >= '3.10.0' # Python 3.10+
pytest>=4.6.0 ; python_version < '3.10.0' and python_version >= '3.7.0' # Python 3.7-3.9
pytest>=4.6.0 ; python_version < '3.7.0' and python_version >= '3.6.0' # Python 3.6
pytest>=8.0.2 ; python_version < '4.0' and python_version >= '3.13' # Python 3.13+
pytest>=8.0.2 ; python_version < '3.13' and python_version >= '3.12' # Python 3.12
pytest>=8.0.2 ; python_version < '3.12' and python_version >= '3.11' # Python 3.11
pytest>=8.0.2 ; python_version < '3.11' and python_version >= '3.10' # Python 3.10
pytest>=8.0.2 ; python_version < '3.10' and python_version >= '3.9' # Python 3.9
pytest>=8.0.2 ; python_version < '3.9' and python_version >= '3.8' # Python 3.8
pytest>=4.6.0 ; python_version < '3.8' and python_version >= '3.7' # Python 3.7
pytest>=4.6.0, <= 6.1.2 ; python_version < '3.6.0' and python_version >= '3.5.0' # Python 3.5
pytest>=4.6.0, <= 4.6.11 ; python_version < '3.5.0' and python_version >= '3.4.0' # Python 3.4
pytest>=4.6.0, <= 4.6.11 ; python_version < '2.8.0' and python_version >= '2.7.0' # Python 2.7
Expand Down

0 comments on commit 439ddd1

Please sign in to comment.