Skip to content

Commit 4479cb7

Browse files
authored
Merge pull request #201 from dmtucker/build-deps
Upgrade build deps
2 parents 003f0bc + b7b549e commit 4479cb7

3 files changed

Lines changed: 6 additions & 10 deletions

File tree

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools >= 61.0", "setuptools-scm >= 7.1"]
2+
requires = ["setuptools >= 80", "setuptools-scm >= 8"]
33
build-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"
3131
dependencies = [
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]

tests/test_pytest_mypy.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff 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",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ deps =
6666
mypy ~= 2.1.0
6767
pytest-xdist >= 3.6.0 # needed for type-checking
6868
commands =
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

0 commit comments

Comments
 (0)