Skip to content

Commit 17b303b

Browse files
authored
Merge pull request #322 from sass/abi3_windows
use abi3 wheels on windows as well
2 parents 5ef7c66 + 6e6615f commit 17b303b

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- script: rm -rf libsass/test
3434
- template: job--python-tox.yml@asottile
3535
parameters:
36-
toxenvs: [py36, py37, py38, py39]
36+
toxenvs: [py36]
3737
os: windows
3838
architectures: [x64, x86]
3939
wheel_tags: true

setup.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -223,11 +223,7 @@ def run(self):
223223

224224
cmdclass = {'upload_doc': upload_doc}
225225

226-
if (
227-
sys.platform != 'win32' and
228-
sys.version_info >= (3,) and
229-
platform.python_implementation() == 'CPython'
230-
):
226+
if sys.version_info >= (3,) and platform.python_implementation() == 'CPython':
231227
try:
232228
import wheel.bdist_wheel
233229
except ImportError:

0 commit comments

Comments
 (0)