Skip to content

Commit 1ee18f3

Browse files
committed
Drop older versions of Python
1 parent 3066380 commit 1ee18f3

File tree

2 files changed

+5
-10
lines changed

2 files changed

+5
-10
lines changed

.github/workflows/ci.yml

+1-7
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,10 @@ on:
77
jobs:
88
unit-tests:
99
name: Test on Python v${{ matrix.python-version }}
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-22.04
1111
strategy:
1212
matrix:
1313
include:
14-
- pipenv-version: '2022.4.8'
15-
python-version: '3.6'
16-
- pipenv-version: '2022.4.8'
17-
python-version: '3.7'
18-
- pipenv-version: '2022.4.8'
19-
python-version: '3.8'
2014
- pipenv-version: '2022.4.8'
2115
python-version: '3.9'
2216
- pipenv-version: '2023.2.4'

setup.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -91,13 +91,14 @@
9191
'Operating System :: OS Independent',
9292
#'Programming Language :: Python :: 3.4', # dropped in v4.0
9393
#'Programming Language :: Python :: 3.5', # dropped in v4.0
94-
'Programming Language :: Python :: 3.6', # will be dropped in v5.0
95-
'Programming Language :: Python :: 3.7', # will be dropped in v5.0
96-
'Programming Language :: Python :: 3.8', # will be dropped in v5.0
94+
#'Programming Language :: Python :: 3.6', # dropped in v5.0
95+
#'Programming Language :: Python :: 3.7', # dropped in v5.0
96+
#'Programming Language :: Python :: 3.8', # dropped in v5.0
9797
'Programming Language :: Python :: 3.9',
9898
'Programming Language :: Python :: 3.10',
9999
'Programming Language :: Python :: 3.11',
100100
'Programming Language :: Python :: 3.12',
101+
'Programming Language :: Python :: 3.13',
101102
'Topic :: Software Development :: Libraries :: Python Modules'
102103
]
103104
)

0 commit comments

Comments
 (0)