Skip to content

Commit bc6103a

Browse files
authored
Bump up setup-python action version; exclude macos-latest+python3.7 (#124)
1 parent 3a8cb03 commit bc6103a

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/master.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: [windows-latest, ubuntu-latest, macos-latest]
20-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
20+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
21+
exclude:
22+
- os: macos-latest
23+
python-version: "3.7"
2124

2225
steps:
2326
- uses: actions/checkout@v2
2427
- name: Set up Python ${{ matrix.python-version }}
25-
uses: actions/setup-python@v1
28+
uses: actions/setup-python@v5
2629
with:
2730
python-version: ${{ matrix.python-version }}
2831
- name: Install dependencies
@@ -43,7 +46,7 @@ jobs:
4346
steps:
4447
- uses: actions/checkout@v2
4548
- name: Set up Python 3.7
46-
uses: actions/setup-python@v1
49+
uses: actions/setup-python@v5
4750
with:
4851
python-version: 3.7
4952
- name: Install dependencies

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ classifiers = [
1717
"Programming Language :: Python :: 3.9",
1818
"Programming Language :: Python :: 3.10",
1919
"Programming Language :: Python :: 3.11",
20+
"Programming Language :: Python :: 3.12",
2021

2122
"License :: OSI Approved :: MIT License",
2223
"Operating System :: OS Independent",

0 commit comments

Comments
 (0)