Skip to content

Commit d55d837

Browse files
committed
fix: Remove 3.7 from the CI matrix
Signed-off-by: Frost Ming <[email protected]>
1 parent 49daa69 commit d55d837

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
matrix:
2121
os: [ Ubuntu, macOS, Windows ]
22-
python-version: [ "3.10" ]
22+
python-version: [ "3.11" ]
2323
project: [ "poetry", "poetry-core" ]
2424
include:
2525
- os: Ubuntu

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
os: [ubuntu-latest, macos-13, windows-latest]
20-
python-version: [3.7, 3.8, 3.9, "3.10", 3.11, 3.12, 3.13]
20+
python-version: [3.8, 3.9, "3.10", 3.11, 3.12, 3.13]
2121

2222
steps:
2323
- uses: actions/checkout@v4

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Changed
66

77
- Expect a tomlkit-specific error instead of `TypeError` from a custom encoder. ([#355](https://github.com/python-poetry/tomlkit/issues/355))
8+
- Remove 3.7 from the CI matrix.
89

910
### Fixed
1011

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ include = [
2121
]
2222

2323
[tool.poetry.dependencies]
24-
python = ">=3.7"
24+
python = ">=3.8"
2525

2626
[tool.poetry.dev-dependencies]
2727
pytest = "^7.2.0"

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
skipsdist = True
3-
envlist = py37, py38, py39, pypy3
3+
envlist = py38, py39, py310, py311, py312, pypy3
44

55
[testenv]
66
whitelist_externals = poetry

0 commit comments

Comments
 (0)