Skip to content

Commit

Permalink
Merge pull request #322 from sass/abi3_windows
Browse files Browse the repository at this point in the history
use abi3 wheels on windows as well
  • Loading branch information
asottile committed Oct 31, 2020
2 parents 5ef7c66 + 6e6615f commit 17b303b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Expand Up @@ -33,7 +33,7 @@ jobs:
- script: rm -rf libsass/test
- template: job--python-tox.yml@asottile
parameters:
toxenvs: [py36, py37, py38, py39]
toxenvs: [py36]
os: windows
architectures: [x64, x86]
wheel_tags: true
Expand Down
6 changes: 1 addition & 5 deletions setup.py
Expand Up @@ -223,11 +223,7 @@ def run(self):

cmdclass = {'upload_doc': upload_doc}

if (
sys.platform != 'win32' and
sys.version_info >= (3,) and
platform.python_implementation() == 'CPython'
):
if sys.version_info >= (3,) and platform.python_implementation() == 'CPython':
try:
import wheel.bdist_wheel
except ImportError:
Expand Down

0 comments on commit 17b303b

Please sign in to comment.