Skip to content

Commit 88210fc

Browse files
committed
Merge branch 'master' of https://github.com/explosion/cymem
2 parents 6882ca4 + 8e2deff commit 88210fc

File tree

2 files changed

+11
-16
lines changed

2 files changed

+11
-16
lines changed

.github/workflows/tests.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,20 +24,22 @@ jobs:
2424
fail-fast: false
2525
matrix:
2626
os: [ubuntu-latest, windows-latest, macos-latest]
27-
python_version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
28-
include:
29-
- os: windows-2019
30-
python_version: "3.6"
31-
- os: ubuntu-20.04
32-
python_version: "3.6"
27+
python_version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
28+
exclude:
29+
# The 3.9/3.10 arm64 Python binaries that `setup-python` tries to use
30+
# don't work on macOS 15 anymore, so skip those.
31+
- os: macos-latest
32+
python_version: "3.9"
33+
- os: macos-latest
34+
python_version: "3.10"
3335
runs-on: ${{ matrix.os }}
3436

3537
steps:
3638
- name: Check out repo
37-
uses: actions/checkout@v3
39+
uses: actions/checkout@v4
3840

3941
- name: Configure Python version
40-
uses: actions/setup-python@v4
42+
uses: actions/setup-python@v5
4143
with:
4244
python-version: ${{ matrix.python_version }}
4345
architecture: x64

setup.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -111,18 +111,11 @@ def setup_package():
111111
"Operating System :: MacOS :: MacOS X",
112112
"Operating System :: Microsoft :: Windows",
113113
"Programming Language :: Cython",
114-
"Programming Language :: Python :: 2.6",
115-
"Programming Language :: Python :: 2.7",
116-
"Programming Language :: Python :: 3.3",
117-
"Programming Language :: Python :: 3.4",
118-
"Programming Language :: Python :: 3.5",
119-
"Programming Language :: Python :: 3.6",
120-
"Programming Language :: Python :: 3.7",
121-
"Programming Language :: Python :: 3.8",
122114
"Programming Language :: Python :: 3.9",
123115
"Programming Language :: Python :: 3.10",
124116
"Programming Language :: Python :: 3.11",
125117
"Programming Language :: Python :: 3.12",
118+
"Programming Language :: Python :: 3.13",
126119
"Topic :: Scientific/Engineering",
127120
],
128121
cmdclass={"build_ext": build_ext_subclass},

0 commit comments

Comments
 (0)