Skip to content

Commit

Permalink
Merge pull request #359 from kajinamit/remove-py37
Browse files Browse the repository at this point in the history
Remove Python 3.7 support
  • Loading branch information
mtreinish authored Feb 7, 2024
2 parents cc66736 + 642f130 commit 3862766
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
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"]
os: ["macOS-latest", "ubuntu-latest", "windows-latest"]
steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ classifier =
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Expand All @@ -27,7 +26,7 @@ project_urls =
Documentation = https://stestr.readthedocs.io
Source Code = https://github.com/mtreinish/stestr
Bug Tracker = https://github.com/mtreinish/stestr/issues
python_requires = >=3.7
python_requires = >=3.8

[files]
packages =
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
minversion = 1.6
envlist = py311,py310,py39,py38,py37,pep8
envlist = py312,py311,py310,py39,py38,pep8
skipsdist = True

[testenv]
Expand Down

0 comments on commit 3862766

Please sign in to comment.