Skip to content
Open
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
12 changes: 6 additions & 6 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5

- uses: actions/setup-python@v3
- uses: actions/setup-python@v6
with:
python-version: ${{ env.PRE_COMMIT_PYTHON_VERSION }}

- name: Cache pre-commit environments
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ runner.os }}-${{ hashFiles('.pre-commit-config.yaml') }}
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python: ["3.10", "3.11", "3.12", "3.13"]
python: ["3.10", "3.11", "3.12", "3.13", "3.14"]
package_name: ["pyrit"]
package_extras: ["dev", "dev_all"]
runs-on: ${{ matrix.os }}
Expand All @@ -94,10 +94,10 @@ jobs:
checks: write
pull-requests: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5

# Set up Python
- uses: actions/setup-python@v3
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}

Expand Down
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
requires-python = ">=3.10, <3.14"
requires-python = ">=3.10, <3.15"
dependencies = [
"aiofiles>=24,<25",
"appdirs>=1.4.0",
Expand Down Expand Up @@ -120,7 +121,7 @@ playwright = [
"playwright>=1.49.0",
]
fairness_bias = [
"spacy>=3.8.7",
"spacy>=3.8.13,!=3.8.14", # 3.8.14 missing cp314 wheels
]
opencv = [
"opencv-python>=4.11.0.86",
Expand All @@ -145,7 +146,7 @@ all = [
"ollama>=0.5.1",
"opencv-python>=4.11.0.86",
"playwright>=1.49.0",
"spacy>=3.8.7",
"spacy>=3.8.13,!=3.8.14", # 3.8.14 missing cp314 wheels
"torch>=2.7.0",
"types-PyYAML>=6.0.12.20250516",
"types-requests>=2.31.0.20250515",
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/executor/benchmark/test_fairness_bias.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def is_spacy_installed():
import spacy # noqa: F401

return True
except ModuleNotFoundError:
except Exception:
return False


Expand Down
Loading
Loading