Skip to content

Commit

Permalink
chore(build)!: drop tests on Python 3.7
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Python 3.7 isn't used anymore on any LTS Ubuntu or
    Debian release. No need to support such an old version anymore.
  • Loading branch information
languitar committed Sep 20, 2021
1 parent 8e09df5 commit 06dce98
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -93,7 +93,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: [3.8, 3.9]

steps:
- name: Clone repo
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = coverage-clean,test-py37-psutil{55,latest}-dateutil{27,latest}, test-py{38,39}-psutillatest-dateutillatest, integration-py{37,38,39}, mindeps, check, docs, coverage
envlist = coverage-clean,test-py38-psutil{55,latest}-dateutil{27,latest}, test-py39-psutillatest-dateutillatest, integration-py{38,39}, mindeps, check, docs, coverage

[testenv]
extras = test
Expand All @@ -25,7 +25,7 @@ commands = coverage erase
depends =

[testenv:coverage]
depends = test-py37-psutil{55,latest}-dateutil{27,latest}, test-py{38,39}-psutillatest-dateutillatest, integration-py{37,38,39}
depends = test-py38-psutil{55,latest}-dateutil{27,latest}, test-py39-psutillatest-dateutillatest, integration-py{38,39}
deps =
coverage
skip_install = true
Expand Down

0 comments on commit 06dce98

Please sign in to comment.