Skip to content

Commit

Permalink
Dropped support for Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
agronholm committed Mar 10, 2024
1 parent e3973e5 commit 40609b0
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,20 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy-3.8", "pypy-3.9"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy-3.9", "pypy-3.10"]
include:
- os: macos-latest
python-version: "3.7"
python-version: "3.8"
- os: windows-latest
python-version: "3.7"
python-version: "3.8"
- os: macos-latest
python-version: "3.11"
python-version: "3.12"
- os: windows-latest
python-version: "3.11"
python-version: "3.12"
- os: macos-latest
python-version: "pypy-3.9"
python-version: "pypy-3.10"
- os: windows-latest
python-version: "pypy-3.9"
python-version: "pypy-3.10"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Install test dependencies
run: pip install .[test] coverage[toml]
- name: Include SDist check dependencies
if: matrix.python-version == '3.11'
if: matrix.python-version == '3.12'
run: pip install build flit
- name: Test with pytest
run: |
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sphinx:
build:
os: ubuntu-22.04
tools:
python: "3.7"
python: "3.8"

python:
install:
Expand Down
4 changes: 4 additions & 0 deletions docs/news.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Release Notes
=============

**UNRELEASED**

- Dropped support for Python 3.7

**0.42.0 (2023-11-26)**

- Allowed removing build tag with ``wheel tags --build ""``
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -23,7 +22,7 @@ classifiers = [
authors = [{name = "Daniel Holth", email = "[email protected]"}]
maintainers = [{name = "Alex Grönholm", email = "[email protected]"}]
keywords = ["wheel", "packaging"]
requires-python = ">=3.7"
requires-python = ">=3.8"
dynamic = ["version"]

[project.urls]
Expand Down Expand Up @@ -113,7 +112,7 @@ select = [
[tool.tox]
legacy_tox_ini = '''
[tox]
envlist = py37, py38, py39, py310, py311, py312, py313, pypy3, lint, pkg
envlist = py38, py39, py310, py311, py312, py313, pypy3, lint, pkg
minversion = 4.0.0
skip_missing_interpreters = true
Expand Down

0 comments on commit 40609b0

Please sign in to comment.