Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
platforms: arm64
- uses: joerick/cibuildwheel@v1.9.0
env:
CIBW_BUILD: cp36-* cp39-macosx_universal2
CIBW_SKIP: 'cp27-* cp35-* pp*'
CIBW_ARCHS_LINUX: auto aarch64
CIBW_ARCHS_MACOS: auto universal2
- uses: actions/upload-artifact@v2
Expand Down
3 changes: 0 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ python_requires = >= 3.6
[options.packages.find]
where = src

[bdist_wheel]
py-limited-api = cp36

[tool:pytest]
testpaths = tests
filterwarnings =
Expand Down
6 changes: 1 addition & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,7 @@
from setuptools import setup
from setuptools.command.build_ext import build_ext

ext_modules = [
Extension(
"markupsafe._speedups", ["src/markupsafe/_speedups.c"], py_limited_api=True
)
]
ext_modules = [Extension("markupsafe._speedups", ["src/markupsafe/_speedups.c"])]


class BuildFailed(Exception):
Expand Down