Skip to content

Commit f3f0672

Browse files
committed
Drop tests with Python 3.6
GitHub Actions no longer supports Ubuntu 20.04 with Python 3.6, so test (and support) only 3.7 or later.
1 parent bb114b7 commit f3f0672

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ jobs:
1111
os: [ubuntu-24.04]
1212
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1313
include:
14-
- os: ubuntu-20.04
15-
python-version: '3.6'
1614
- os: ubuntu-22.04
1715
python-version: '3.7'
1816
runs-on: ${{ matrix.os }}

python/saliweb/backend/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323

2424

2525
# Version check
26-
if sys.version_info[0:2] < (3, 6):
27-
raise ImportError("This module requires Python 3.6 or later")
26+
if sys.version_info[0:2] < (3, 7):
27+
raise ImportError("This module requires Python 3.7 or later")
2828

2929

3030
class InvalidStateError(Exception):

0 commit comments

Comments
 (0)