Skip to content

Commit f3a645b

Browse files
committed
Add py13
1 parent f1428c3 commit f3a645b

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ name: Build and Test
66
on:
77
# Triggers the workflow on push or pull request events but only for the main branch
88
push:
9-
branches: [ main ]
9+
branches: [ main, 'work/**' ]
1010
pull_request:
11-
branches: [ main ]
11+
branches: [ main, 'work/**' ]
1212

1313
# Allows you to run this workflow manually from the Actions tab
1414
workflow_dispatch:
@@ -21,10 +21,10 @@ jobs:
2121
runs-on: windows-2019
2222

2323
env:
24-
CIBW_BUILD: cp37-win_amd64 cp38-win_amd64 cp39-win_amd64 cp310-win_amd64 cp311-win_amd64 cp312-win_amd64
24+
CIBW_BUILD: cp39-win_amd64 cp310-win_amd64 cp311-win_amd64 cp312-win_amd64 cp313-win_amd64
2525
CIBW_ARCHS: AMD64
2626
CIBW_PLATFORM: windows
27-
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.7"
27+
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.9"
2828
CIBW_TEST_REQUIRES: pytest
2929
CIBW_TEST_COMMAND: "pytest {project}/tests"
3030

.github/workflows/pypi_publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
runs-on: windows-2019
1717

1818
env:
19-
CIBW_BUILD: cp37-win_amd64 cp38-win_amd64 cp39-win_amd64 cp310-win_amd64 cp311-win_amd64 cp312-win_amd64
19+
CIBW_BUILD: cp39-win_amd64 cp310-win_amd64 cp311-win_amd64 cp312-win_amd64 cp313-win_amd64
2020
CIBW_ARCHS: AMD64
2121
CIBW_PLATFORM: windows
22-
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.7"
22+
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.9"
2323
CIBW_TEST_REQUIRES: pytest
2424
CIBW_TEST_COMMAND: "pytest {project}/tests"
2525

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
package_dir={"": "src"},
5656
packages=["dwriteshapepy"],
5757
zip_safe=False,
58-
python_requires=">=3.7",
58+
python_requires=">=3.9",
5959
ext_modules=cythonize(
6060
extension,
6161
annotate=bool(int(os.environ.get("CYTHON_ANNOTATE", "0"))),

0 commit comments

Comments
 (0)