Skip to content

Commit 2e2b408

Browse files
committed
Bump minimum Python version to 3.9
1 parent c596867 commit 2e2b408

File tree

2 files changed

+2
-26
lines changed

2 files changed

+2
-26
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -48,27 +48,6 @@ jobs:
4848
with-opt-deps: true
4949
runs-on: ubuntu-22.04
5050

51-
- python-version: "3.8"
52-
with-opt-deps: true
53-
runs-on: ubuntu-22.04
54-
55-
- python-version: "3.7"
56-
with-opt-deps: true
57-
runs-on: ubuntu-22.04
58-
- python-version: "3.7"
59-
with-opt-deps: false
60-
runs-on: ubuntu-22.04
61-
- python-version: "pypy-3.7"
62-
with-opt-deps: false
63-
runs-on: ubuntu-22.04
64-
65-
- python-version: "3.6"
66-
with-opt-deps: false
67-
runs-on: ubuntu-20.04
68-
- python-version: "pypy-3.6"
69-
with-opt-deps: false
70-
runs-on: ubuntu-20.04
71-
7251
steps:
7352
- uses: actions/checkout@v2
7453
- name: Set up Python ${{ matrix.python-version }}

setup.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ def normalizeWhitespace(s):
107107
fd.write(' pass\n')
108108
fd.close()
109109

110-
if sys.version_info < (3, 6, 0):
111-
sys.stderr.write("Limnoria requires Python 3.6 or newer.")
110+
if sys.version_info < (3, 9, 0):
111+
sys.stderr.write("Limnoria requires Python 3.9 or newer.")
112112
sys.stderr.write(os.linesep)
113113
sys.exit(-1)
114114

@@ -201,9 +201,6 @@ def normalizeWhitespace(s):
201201
'Operating System :: OS Independent',
202202
'Operating System :: POSIX',
203203
'Operating System :: Microsoft :: Windows',
204-
'Programming Language :: Python :: 3.6',
205-
'Programming Language :: Python :: 3.7',
206-
'Programming Language :: Python :: 3.8',
207204
'Programming Language :: Python :: 3.9',
208205
'Programming Language :: Python :: 3.10',
209206
'Programming Language :: Python :: 3.11',

0 commit comments

Comments
 (0)