Skip to content

Commit 1f4c5da

Browse files
committed
Updating Workflows to deprecate all version of pythons & macos
1 parent 171afed commit 1f4c5da

File tree

4 files changed

+17
-8
lines changed

4 files changed

+17
-8
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,15 @@ jobs:
1010
# https://github.com/actions/python-versions/blob/main/versions-manifest.json
1111
strategy:
1212
matrix:
13-
os: [macos-14, windows-latest]
14-
python-version: [3.6, 3.7, 3.8, pypy-3.7]
13+
os: [macos-15-intel, macos-latest, windows-latest]
14+
python-version: [3.6, 3.7, 3.8, 3.9, pypy-3.7]
1515
exclude:
1616
- os: windows-latest
1717
python-version: 3.6
18+
- os: macos-latest
19+
python-version: 3.6, 3.7
20+
- os: macos-15-intel
21+
python-version: 3.6, 3.7
1822
include:
1923
- os: ubuntu-20.04
2024
python-version: 3.7
@@ -73,11 +77,15 @@ jobs:
7377
runs-on: ${{ matrix.os }}
7478
strategy:
7579
matrix:
76-
os: [macos-14, windows-latest]
77-
python-version: [3.6, 3.7, 3.8, pypy-3.7]
80+
os: [macos-15-intel, macos-latest, windows-latest]
81+
python-version: [3.6, 3.7, 3.8, 3.9, pypy-3.7]
7882
exclude:
7983
- os: windows-latest
8084
python-version: 3.6
85+
- os: macos-latest
86+
python-version: 3.6, 3.7
87+
- os: macos-15-intel
88+
python-version: 3.6, 3.7
8189
include:
8290
- os: ubuntu-20.04
8391
python-version: 3.7

.github/workflows/pypiupload.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-20.04
1313
strategy:
1414
matrix:
15-
python-version: [2.7, 3.7]
15+
python-version: [2.7, 3.x]
1616

1717
steps:
1818
- uses: actions/[email protected]

.github/workflows/spec_update.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88
Update:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v3
1212
- name: Setup Python environment
13-
uses: actions/setup-python@v3.1.4
13+
uses: actions/setup-python@v4
1414
with:
15-
python-version: 3.7
15+
python-version: 3.9
1616
- name: Get current time
1717
uses: 1466587594/get-current-time@v2
1818
id: current-time

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@
7676
'Programming Language :: Python :: 3.6',
7777
'Programming Language :: Python :: 3.7',
7878
'Programming Language :: Python :: 3.8',
79+
'Programming Language :: Python :: 3.9',
7980
'Programming Language :: Python :: Implementation :: CPython',
8081
'Programming Language :: Python :: Implementation :: PyPy',
8182
'Topic :: Software Development :: Libraries :: Python Modules',

0 commit comments

Comments
 (0)