Skip to content
This repository was archived by the owner on Apr 2, 2025. It is now read-only.

Commit f5070c0

Browse files
only do 3.12 in testing
1 parent 3a6cc7f commit f5070c0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
strategy:
1919
matrix:
20-
python-version: ["3.10", "3.11", "3.12", "pypy3.10"]
20+
python-version: ["3.12"]
2121

2222
steps:
2323
- uses: actions/checkout@v4

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import nox
22

33

4-
@nox.session(python=["3.10", "3.11", "3.12", "pypy3.10"])
4+
@nox.session(python=["3.12"])
55
def tests(session):
66
session.run("poetry", "install", external=True)
77
session.run("poetry", "run", "pytest", external=True)

0 commit comments

Comments
 (0)