File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11[build-system ]
2- requires = [" setuptools >= 61.0 " , " setuptools-scm >= 7.1 " ]
2+ requires = [" setuptools >= 80 " , " setuptools-scm >= 8 " ]
33build-backend = " setuptools.build_meta"
44
55[project ]
@@ -27,11 +27,11 @@ classifiers = [
2727 " Programming Language :: Python :: Implementation :: CPython" ,
2828 " Topic :: Software Development :: Testing" ,
2929]
30- requires-python = " >=3.10"
30+ requires-python = " >= 3.10"
3131dependencies = [
32- " filelock>= 3.0" ,
33- " mypy>= 1.0" ,
34- " pytest>= 7.0" ,
32+ " filelock >= 3.0" ,
33+ " mypy >= 1.0" ,
34+ " pytest >= 7.0" ,
3535]
3636
3737[project .entry-points .pytest11 ]
Original file line number Diff line number Diff line change @@ -64,10 +64,6 @@ def pyfunc(x: int) -> int:
6464 PYTEST_VERSION < Version ("7.4" ),
6565 reason = "https://github.com/pytest-dev/pytest/pull/10935" ,
6666)
67- @pytest .mark .skipif (
68- PYTHON_VERSION < Version ("3.10" ),
69- reason = "PEP 597 was added in Python 3.10." ,
70- )
7167@pytest .mark .skipif (
7268 PYTHON_VERSION >= Version ("3.12" ) and MYPY_VERSION < Version ("1.5" ),
7369 reason = "https://github.com/python/mypy/pull/15558" ,
Original file line number Diff line number Diff line change 6666 mypy ~= 2.1.0
6767 pytest-xdist >= 3.6.0 # needed for type-checking
6868commands =
69- black --check --target-version py38 src tests
69+ black --check --target-version py310 src tests
7070 flake8 src tests
7171 mypy --strict src
7272 bandit --recursive src
You can’t perform that action at this time.
0 commit comments