Skip to content

Commit

Permalink
Update CI configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
brunato committed Dec 20, 2024
1 parent e5becd9 commit 7af8875
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-elementpath.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.8, 3.9, "3.10", 3.11, 3.12, "3.13.0", "3.14.0-alpha.1", "pypy-3.10"]
python-version: [3.8, 3.9, "3.10", 3.11, 3.12, "3.13.0", "3.14.0-alpha.3", "pypy-3.10"]
exclude:
- os: macos-latest
python-version: 3.8
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
pip install mypy==1.13.0 xmlschema lxml-stubs
mypy --show-error-codes --strict elementpath
- name: Install optional dependencies
if: ${{ matrix.python-version != '3.14.0-alpha.1' }}
if: ${{ matrix.python-version != '3.14.0-alpha.3' }}
run: pip install lxml
- name: Test with unittest
run: |
Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ min_version = 4.0
envlist =
py{38,39,310,311,312,313,314}, pypy3, docs, flake8,
mypy-py{38,39,310,311,312,313,py3}, pytest, coverage,
xmlschema{251,302,310,321,332,342}, w3c-xsdtests
xmlschema{251,302,310,321,332,342,343}, w3c-xsdtests
skip_missing_interpreters = true
work_dir = {tox_root}/../.tox/elementpath

Expand Down Expand Up @@ -71,7 +71,7 @@ deps =
commands =
pytest tests -ra

[testenv:xmlschema{251,302,310,321,332,342}]
[testenv:xmlschema{251,302,310,321,332,342,343}]
description = Run xmlschema tests and mypy on xmlschema source (>=3.1.0)
platform = (linux|darwin)
set_env =
Expand All @@ -81,6 +81,7 @@ set_env =
xmlschema321: VERSION = 3.2.1
xmlschema332: VERSION = 3.3.2
xmlschema342: VERSION = 3.4.2
xmlschema343: VERSION = 3.4.3
change_dir = {env_tmp_dir}
deps =
mypy==1.11.2
Expand Down

0 comments on commit 7af8875

Please sign in to comment.