Skip to content

Commit

Permalink
Changed python version
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbalakirev committed Mar 22, 2024
1 parent bc868dd commit fee0ca8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
#TODO: move lint to separate job
#TODO: coverage tests in separate job

name: Python package

Expand All @@ -16,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", 3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
9 changes: 3 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
[tox]
envlist = py36,
pypy36,
py37,
pypy37,
envlist =
py38,
pypy38,
py39,
py310,
py311,
py312

[gh]
python =
Expand All @@ -16,8 +14,7 @@ python =
3.10 = py310
3.9 = py39
3.8 = py38
3.7 = py37
3.6 = py36


[testenv]
deps = pytest
Expand Down

0 comments on commit fee0ca8

Please sign in to comment.