Skip to content

Commit

Permalink
drop support for py < 39
Browse files Browse the repository at this point in the history
  • Loading branch information
gawel committed Jul 5, 2024
1 parent 4da7386 commit c21d6bf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
strategy:
matrix:
py:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
os:
- "ubuntu-latest"
- "macos-latest"
Expand Down Expand Up @@ -54,10 +54,10 @@ jobs:
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.12
architecture: x64
- run: pip install tox
- run: tox -e py39,coverage
- run: tox -e py312,coverage
docs:
runs-on: ubuntu-latest
name: Build the documentation
Expand All @@ -66,7 +66,7 @@ jobs:
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.12
architecture: x64
- run: pip install tox
- run: tox -e docs
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
skip_missing_interpreters = true
envlist =
py37,py38,py39,py310
py39,py310,py311,py312
coverage,
docs

Expand Down Expand Up @@ -31,7 +31,7 @@ commands =
coverage report --show-missing --fail-under=96

[testenv:docs]
basepython = python3.9
basepython = python3.12
allowlist_externals =
make
commands =
Expand Down

0 comments on commit c21d6bf

Please sign in to comment.