Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 7 additions & 13 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
# Test against Pandas 1.2, 1.3, and latest version
pandas-version: ["1.2.*", "1.3.*", ""]
exclude:
# Test all Pandas versions with Python 3.8, exclude others
- python-version: 3.7
pandas-version: "1.1.*"
- python-version: 3.7
pandas-version: "1.2.*"
- python-version: 3.8
pandas-version: "1.1.*"
- python-version: 3.8
pandas-version: "1.2.*"
python-version: [3.11, 3.12]
# Test against older version(s) of Pandas and latest version
pandas-version: ["2.2.*", ""]
#exclude:
# Uncomment to exclude combinations we don't expect to work
# - python-version: 3.13
# pandas-version: "1.3.*"

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion config/dev_reqs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pytest
pyyaml
transformers>=3.0.0
# SpaCy models aren't stable across point releases
spacy==3.6.0
spacy>=3.7.0,<3.8
ipywidgets
ibm-watson
twine
Expand Down
2 changes: 1 addition & 1 deletion env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# Use environment variables if present.
# (-z predicate means "unset or empty string")
if [ -z "$PYTHON_VERSION" ]; then
PYTHON_VERSION="3.8"
PYTHON_VERSION="3.12"
fi
ENV_NAME="pd"

Expand Down
Loading