Skip to content

Commit 00114c7

Browse files
authored
Merge pull request #689 from magmax/python3.8-EOL
remove python 3.8 as its EOL, add 3.13
2 parents 569e4ec + af2068f commit 00114c7

4 files changed

Lines changed: 746 additions & 645 deletions

File tree

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
include:
16-
- { python: "3.12", os: "ubuntu-latest", session: "pre-commit" }
16+
- { python: "3.13", os: "ubuntu-latest", session: "pre-commit" }
1717

18-
- { python: "3.10", os: "ubuntu-latest", session: "safety" }
18+
- { python: "3.11", os: "ubuntu-latest", session: "safety" }
1919

20+
- { python: "3.13", os: "ubuntu-latest", session: "tests" }
21+
- { python: "3.13", os: "windows-latest", session: "tests" }
22+
- { python: "3.13", os: "macos-latest", session: "tests" }
2023
- { python: "3.12", os: "ubuntu-latest", session: "tests" }
21-
- { python: "3.12", os: "windows-latest", session: "tests" }
22-
- { python: "3.12", os: "macos-latest", session: "tests" }
2324
- { python: "3.11", os: "ubuntu-latest", session: "tests" }
2425
- { python: "3.10", os: "ubuntu-latest", session: "tests" }
2526
- { python: "3.9", os: "ubuntu-latest", session: "tests" }
26-
- { python: "3.8", os: "ubuntu-latest", session: "tests" }
2727

2828
env:
2929
NOXSESSION: ${{ matrix.session }}

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525

2626
package = "inquirer"
27-
python_versions = ["3.12", "3.11", "3.10", "3.9", "3.8"]
27+
python_versions = ["3.13", "3.12", "3.11", "3.10", "3.9"]
2828
nox.needs_version = ">= 2021.6.6"
2929
nox.options.sessions = (
3030
"pre-commit",

0 commit comments

Comments
 (0)