Skip to content

Commit

Permalink
Remove Python 3.7 support
Browse files Browse the repository at this point in the history
Python 3.7 already reached its EOL on 2023-06-27[1].

[1] https://devguide.python.org/versions/
  • Loading branch information
kajinamit committed Jan 29, 2024
1 parent cc66736 commit fa98c6a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 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

0 comments on commit fa98c6a

Please sign in to comment.