Skip to content

Commit ff085bb

Browse files
committed
Drop back to Python 3.12 due to SpaCy
1 parent 55c4917 commit ff085bb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/run_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
strategy:
2020
matrix:
21-
python-version: [3.11, 3.12, 3.13]
21+
python-version: [3.11, 3.12]
2222
# Test against older version(s) of Pandas and latest version
2323
pandas-version: ["2.2.*", ""]
2424
#exclude:

config/dev_reqs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pytest
77
pyyaml
88
transformers>=3.0.0
99
# SpaCy models aren't stable across point releases
10-
spacy==3.6.0
10+
spacy>=3.7.0,<3.8
1111
ipywidgets
1212
ibm-watson
1313
twine

env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# Use environment variables if present.
1313
# (-z predicate means "unset or empty string")
1414
if [ -z "$PYTHON_VERSION" ]; then
15-
PYTHON_VERSION="3.13"
15+
PYTHON_VERSION="3.12"
1616
fi
1717
ENV_NAME="pd"
1818

0 commit comments

Comments
 (0)