Skip to content

Commit d796ffd

Browse files
committedJun 4, 2024
remove 3.6 test
1 parent 143f012 commit d796ffd

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed
 

‎.github/workflows/pythonpackage.yml

+11-9
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,20 @@ name: Python package
22

33
on: [push]
44

5+
# https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
6+
57
jobs:
68
test-linux:
79
runs-on: ubuntu-latest
810
strategy:
911
max-parallel: 3
1012
matrix:
11-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
13+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1214

1315
steps:
14-
- uses: actions/checkout@v1
16+
- uses: actions/checkout@v4
1517
- name: Set up Python ${{ matrix.python-version }}
16-
uses: actions/setup-python@v1
18+
uses: actions/setup-python@v5
1719
with:
1820
python-version: ${{ matrix.python-version }}
1921
- name: Install dependencies
@@ -30,12 +32,12 @@ jobs:
3032
strategy:
3133
max-parallel: 3
3234
matrix:
33-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
35+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
3436

3537
steps:
36-
- uses: actions/checkout@v1
38+
- uses: actions/checkout@v4
3739
- name: Set up Python ${{ matrix.python-version }}
38-
uses: actions/setup-python@v1
40+
uses: actions/setup-python@v5
3941
with:
4042
python-version: ${{ matrix.python-version }}
4143
- name: Install dependencies
@@ -52,12 +54,12 @@ jobs:
5254
strategy:
5355
max-parallel: 3
5456
matrix:
55-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
57+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
5658

5759
steps:
58-
- uses: actions/checkout@v1
60+
- uses: actions/checkout@v4
5961
- name: Set up Python ${{ matrix.python-version }}
60-
uses: actions/setup-python@v1
62+
uses: actions/setup-python@v5
6163
with:
6264
python-version: ${{ matrix.python-version }}
6365
- name: Install dependencies

‎setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,11 @@
3333
license="MIT License",
3434
package_data={"zipapps": ["*.template"]},
3535
py_modules=["zipapps"],
36-
python_requires=">=3.6",
36+
python_requires=">=3.7",
3737
classifiers=[
3838
"License :: OSI Approved :: MIT License",
3939
"Programming Language :: Python",
4040
"Programming Language :: Python :: 3",
41-
"Programming Language :: Python :: 3.6",
4241
"Programming Language :: Python :: 3.7",
4342
"Programming Language :: Python :: 3.8",
4443
"Programming Language :: Python :: 3.9",

0 commit comments

Comments
 (0)
Failed to load comments.