Skip to content

Commit f43e8e6

Browse files
authored
Merge pull request #153 from jameshilliard/python-312
Add support for python 3.12 and drop python 2.7 support
2 parents a60f834 + 6708631 commit f43e8e6

File tree

7 files changed

+17992
-9821
lines changed

7 files changed

+17992
-9821
lines changed

.github/workflows/build_and_upload.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
matrix:
1717
os: [ubuntu-latest, macos-latest, windows-latest]
1818
steps:
19-
- uses: "actions/checkout@v3"
19+
- uses: "actions/checkout@v4"
2020
with:
2121
submodules: true
2222
- name: "Build wheels"
@@ -35,7 +35,7 @@ jobs:
3535
name: "Build source distribution"
3636
runs-on: ubuntu-latest
3737
steps:
38-
- uses: "actions/checkout@v3"
38+
- uses: "actions/checkout@v4"
3939
with:
4040
submodules: true
4141
- name: "Install dependencies"
@@ -60,7 +60,7 @@ jobs:
6060
with:
6161
name: artifact
6262
path: dist
63-
- uses: "pypa/gh-action-pypi-publish@v1.5.0"
63+
- uses: "pypa/gh-action-pypi-publish@v1.8.10"
6464
with:
6565
user: __token__
6666
password: ${{ secrets.PYPI_TOKEN }}

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
python-version: ["2.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
16+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1717
os: [ubuntu-latest, macos-latest, windows-latest]
1818
exclude:
19-
- os: windows-latest
20-
python-version: "2.7"
19+
- os: ubuntu-latest
20+
python-version: "3.6"
2121
fail-fast: false
2222

2323
steps:
24-
- uses: "actions/checkout@v2"
24+
- uses: "actions/checkout@v4"
2525
with:
2626
submodules: true
27-
- uses: "actions/setup-python@v2"
27+
- uses: "actions/setup-python@v4"
2828
with:
2929
python-version: "${{ matrix.python-version }}"
3030
- name: "Install dependencies"

0 commit comments

Comments
 (0)