Skip to content

Commit

Permalink
Merge pull request #1352 from opencobra/drop-py37
Browse files Browse the repository at this point in the history
[Suggestion] drop suppport for Python 3.7
  • Loading branch information
Midnighter committed Aug 27, 2023
2 parents e605daa + d910a41 commit e48bc84
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11']
timeout-minutes: 360

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/safety.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11']
timeout-minutes: 120

steps:
Expand Down
1 change: 0 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ classifiers =
License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Expand Down
8 changes: 3 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
[tox]
envlist = isort, black, flake8, safety, py3{7,8,9,10,11}, coverage
envlist = isort, black, flake8, safety, py3{8,9,10,11}, coverage

[gh-actions]
python =
3.6: install, py36
3.7: install, py37
3.8: install, py38
3.8: install, safety, py38
3.9: install, py39
3.10: install, py310, coverage
3.11: install, py311
Expand Down Expand Up @@ -65,7 +63,7 @@ commands=
deps=
safety
commands=
safety check --full-report --ignore 43453 --ignore 44715 --ignore 44716 --ignore 44717
safety check --full-report

[testenv:install]
skip_install = True
Expand Down

0 comments on commit e48bc84

Please sign in to comment.