Skip to content

Commit a60088f

Browse files
authored
Merge pull request #66 from mideind/cifix2
Updated CI config
2 parents 4e9713f + ffc3f68 commit a60088f

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/python-package.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,24 +15,23 @@ jobs:
1515
strategy:
1616
matrix:
1717
os: [ubuntu-latest]
18-
python-version: [ "3.9", "3.10", "3.11", "3.12", "pypy-3.9", "pypy-3.10"]
18+
python-version: [ "3.9", "3.13", "pypy-3.9", "pypy-3.10"]
1919

2020
steps:
2121
- uses: actions/checkout@v4
2222
- name: Set up Python ${{ matrix.python-version }}
23-
uses: actions/setup-python@v4
23+
uses: actions/setup-python@v5
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626
- name: Install GreynirCorrect
2727
run: |
28-
python -m pip install --upgrade pip wheel setuptools pytest
29-
python -m pip install git+https://github.com/mideind/Tokenizer#egg=tokenizer
30-
python -m pip install git+https://github.com/mideind/GreynirPackage#egg=reynir
28+
python -m pip install uv
29+
uv pip install --system --upgrade wheel setuptools pytest tokenizer reynir
3130
# No need to test the sentence classifier in every build (also doesn't work with PyPy)
3231
if [ "${{ matrix.python-version }}" == "3.9" ]; then
33-
python -m pip install -e ".[sentence_classifier]"
32+
uv pip install --system -e ".[sentence_classifier]"
3433
else
35-
python -m pip install -e ".[dev]"
34+
uv pip install --system -e ".[dev]"
3635
fi
3736
- name: Typecheck with mypy
3837
run: |

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ classifiers = [
2121
"Programming Language :: Python :: 3.10",
2222
"Programming Language :: Python :: 3.11",
2323
"Programming Language :: Python :: 3.12",
24+
"Programming Language :: Python :: 3.13",
2425
"Programming Language :: Python :: Implementation :: CPython",
2526
"Programming Language :: Python :: Implementation :: PyPy",
2627
"Topic :: Software Development :: Libraries :: Python Modules",

0 commit comments

Comments
 (0)