Skip to content

Commit b75464f

Browse files
[pre-commit.ci] pre-commit autoupdate (#29)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/pre-commit/pre-commit-hooks: v4.6.0 → v5.0.0](pre-commit/pre-commit-hooks@v4.6.0...v5.0.0) - [github.com/tox-dev/pyproject-fmt: 2.2.4 → v2.5.1](tox-dev/pyproject-fmt@2.2.4...v2.5.1) - [github.com/astral-sh/ruff-pre-commit: v0.6.8 → v0.11.6](astral-sh/ruff-pre-commit@v0.6.8...v0.11.6) - [github.com/codespell-project/codespell: v2.3.0 → v2.4.1](codespell-project/codespell@v2.3.0...v2.4.1) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * ci: drop 3.7 test run * drop 3.7 --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: skshetry <18718008+skshetry@users.noreply.github.com>
1 parent 4961b12 commit b75464f

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ jobs:
77
- uses: actions/checkout@v3
88
- uses: wntrblm/nox@2023.04.22
99
with:
10-
python-versions: "3.7, 3.8, 3.9, 3.10, 3.11, 3.12"
10+
python-versions: "3.8, 3.9, 3.10, 3.11, 3.12"
1111
- run: nox
1212
- run: nox -s build

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v4.6.0
3+
rev: v5.0.0
44
hooks:
55
- id: check-toml
66
- id: check-yaml
77
- id: end-of-file-fixer
88
- id: trailing-whitespace
99
- repo: https://github.com/tox-dev/pyproject-fmt
10-
rev: "2.2.4"
10+
rev: "v2.5.1"
1111
hooks:
1212
- id: pyproject-fmt
1313
- repo: https://github.com/astral-sh/ruff-pre-commit
14-
rev: v0.6.8
14+
rev: v0.11.6
1515
hooks:
1616
- id: ruff
1717
args: [--fix, --exit-non-zero-on-fix]
1818
- id: ruff-format
1919
- repo: https://github.com/codespell-project/codespell
20-
rev: v2.3.0
20+
rev: v2.4.1
2121
hooks:
2222
- id: codespell
2323
additional_dependencies: ["tomli"]

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
locations = "pytest_test_utils", "tests.py"
1010

1111

12-
@nox.session(python=["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"])
12+
@nox.session(python=["3.8", "3.9", "3.10", "3.11", "3.12"])
1313
def tests(session: nox.Session) -> None:
1414
session.install(".[tests]")
1515
# `pytest --cov` will start coverage after pytest

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@ license = { text = "Apache License 2.0" }
1212
authors = [
1313
{ name = "Saugat Pachhai", email = "support@dvc.org" },
1414
]
15-
requires-python = ">=3.7"
15+
requires-python = ">=3.8"
1616
classifiers = [
1717
"Framework :: Pytest",
1818
"Programming Language :: Python :: 3 :: Only",
19-
"Programming Language :: Python :: 3.7",
2019
"Programming Language :: Python :: 3.8",
2120
"Programming Language :: Python :: 3.9",
2221
"Programming Language :: Python :: 3.10",
2322
"Programming Language :: Python :: 3.11",
2423
"Programming Language :: Python :: 3.12",
24+
"Programming Language :: Python :: 3.13",
2525
]
2626
dynamic = [
2727
"version",

0 commit comments

Comments
 (0)