Skip to content

Commit 47de0bd

Browse files
authored
feat: Drop support for unsupported Python versions (#53)
1 parent 7bcf072 commit 47de0bd

File tree

3 files changed

+6
-17
lines changed

3 files changed

+6
-17
lines changed

.github/workflows/pr-checks.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,7 @@ jobs:
4141
strategy:
4242
matrix:
4343
platform: [ubuntu-latest, macos-latest, windows-latest]
44-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
45-
include:
46-
- platform: ubuntu-20.04
47-
python-version: 3.6
48-
- platform: ubuntu-22.04
49-
python-version: 3.7
44+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
5045

5146
steps:
5247
- name: Checkout repository

setup.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,11 @@
5757

5858
# Specify the Python versions you support here. In particular, ensure
5959
# that you indicate whether you support Python 2, Python 3 or both.
60-
'Programming Language :: Python :: 2',
61-
'Programming Language :: Python :: 2.7',
62-
'Programming Language :: Python :: 3',
63-
'Programming Language :: Python :: 3.6',
64-
'Programming Language :: Python :: 3.7',
65-
'Programming Language :: Python :: 3.8',
6660
'Programming Language :: Python :: 3.9',
61+
'Programming Language :: Python :: 3.10',
62+
'Programming Language :: Python :: 3.11',
63+
'Programming Language :: Python :: 3.12',
64+
'Programming Language :: Python :: 3.13',
6765
],
6866

6967
# What does your project relate to?

tox.ini

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,10 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py{27,36,37,38,39,310,311,312,313}-{linux,macos,windows}
7+
envlist = py{39,310,311,312,313}-{linux,macos,windows}
88

99
[gh-actions]
1010
python =
11-
2.7: py27
12-
3.6: py36
13-
3.7: py37
14-
3.8: py38
1511
3.9: py39
1612
3.10: py310
1713
3.11: py311

0 commit comments

Comments
 (0)