Skip to content

Commit

Permalink
update py versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Can Gueney Aksakalli committed Dec 4, 2024
1 parent c319263 commit 9413172
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: [3.9, 3.10, 3.11, 3.12]

steps:
- uses: actions/checkout@v1
Expand Down
4 changes: 2 additions & 2 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
sphinx==4.4.0
sphinx_rtd_theme==1.0.0
sphinx
sphinx_rtd_theme
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,4 @@
],
packages=["openlr"],
install_requires=[],
test_suite="tests",
)
13 changes: 7 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@

[tox]
envlist = py{36,37,38,39}, black, coverage, docs
envlist = py{39,310,311,312}, black, coverage, docs

[testenv]
commands = python setup.py test
deps = pytest
commands = pytest tests

[testenv:black]
deps = black
Expand All @@ -28,6 +28,7 @@ commands = sphinx-build -q -W -b html "." "_build"

[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39, docs, coverage, black
3.9: py39
3.10: py310
3.11: py311
3.12: py312, docs, coverage, black

0 comments on commit 9413172

Please sign in to comment.