Skip to content

Commit c01f58c

Browse files
committed
ci: Drop support for Python 3.6 and support Python 3.10
1 parent 35c0fbf commit c01f58c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/push.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
steps:
99
- uses: actions/checkout@master
1010
- name: Setting up tox environment
11-
uses: docker://kiwicom/tox:3.22.0
11+
uses: docker://kiwicom/tox:3.25.0
1212
env:
1313
TOXENV: ${{ matrix.toxenv }}
1414
XDG_CACHE_HOME: /tmp/cache
@@ -27,4 +27,4 @@ jobs:
2727
key: ${{ runner.os }}-${{ hashFiles('poetry.lock') }}
2828
strategy:
2929
matrix:
30-
toxenv: [py36, py37, py38, py39]
30+
toxenv: [py37, py38, py39, py310]

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ classifiers=[
1818
"Programming Language :: Python :: 3.7",
1919
"Programming Language :: Python :: 3.8",
2020
"Programming Language :: Python :: 3.9",
21+
"Programming Language :: Python :: 3.10",
2122
"Topic :: Software Development :: Libraries :: Python Modules",
2223
]
2324
include = ["*.md", "*.toml", "*.txt", "*.yml", "*.yaml", ".coveragerc", "tox.ini", "structlog_sentry/py.typed"]

tox.ini

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
33
lint
4-
py{36,37,38,39}
4+
py{37,38,39,310}
55
isolated_build = true
66

77
[testenv]
@@ -10,7 +10,6 @@ deps = poetry
1010
commands =
1111
poetry install
1212
poetry run coverage run --parallel-mode -m pytest {posargs}
13-
poetry run coverage combine
1413
poetry run coverage report
1514

1615
[testenv:lint]

0 commit comments

Comments
 (0)