Skip to content

Commit 4423832

Browse files
committed
don't test python 3.9, support 3.13
We didn't support 3.9 in pyproject.toml, but we bogusly tested for it in CI
1 parent 36da385 commit 4423832

File tree

3 files changed

+1810
-1500
lines changed

3 files changed

+1810
-1500
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,7 @@ jobs:
2222
fail-fast: false
2323
matrix:
2424
os: [ubuntu-latest, windows-latest, macos-latest]
25-
python-version: ["3.9", "3.10", "3.11", "3.12"]
26-
# Workaround for
27-
# https://github.com/actions/setup-python/issues/696#issuecomment-2072959905
28-
# ideally we can remove this later.
29-
exclude:
30-
- os: macos-14
31-
python-version: '3.9'
25+
python-version: ["3.10", "3.11", "3.12", "3.13"]
3226

3327
steps:
3428
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,8 @@ addopts = [
104104
filterwarnings = [
105105
# fail on any warnings that are not explicitly matched below
106106
"error",
107+
# spacy 3.8.7 uses some deprecated API from click for it's CLI
108+
"ignore:Importing 'parser.split_arg_string' is deprecated:DeprecationWarning",
107109
]
108110
doctest_optionflags = [
109111
"NORMALIZE_WHITESPACE",

0 commit comments

Comments
 (0)