Skip to content

Commit 6aaf896

Browse files
committed
Revert "Upgrade nox"
This reverts commit 2b16a51.
1 parent 2b16a51 commit 6aaf896

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ jobs:
2222
with:
2323
python-version: ${{ matrix.python }}
2424
- name: Install test dependencies
25-
run: python -m pip install --upgrade nox
25+
run: python -m pip install nox==2024.04.15
2626
- name: Test
2727
run: python -m nox -s tests-${{ matrix.python }}

noxfile.py

+3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515

1616
nox.options.sessions = ["lint"]
1717

18+
# Define the minimal nox version required to run
19+
nox.options.needs_version = ">= 2024.3.2"
20+
1821

1922
@nox.session
2023
def lint(session):

0 commit comments

Comments
 (0)