Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Scientific Software
CrysFML
Commits
ada842ec
Unverified
Commit
ada842ec
authored
Jul 22, 2021
by
Simon Ward
Browse files
Add windows naming for wheels
parent
2b4ea0b4
Pipeline
#10481
passed with stages
in 76 minutes and 43 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
setup.py
View file @
ada842ec
...
...
@@ -5,6 +5,7 @@ import pkgutil
import
shutil
import
struct
import
sys
import
platform
import
setuptools
import
distutils.sysconfig
as
sysconfig
from
distutils.core
import
setup
...
...
@@ -46,7 +47,8 @@ try:
def
get_tag
(
self
):
python
,
abi
,
plat
=
_bdist_wheel
.
get_tag
(
self
)
python
,
abi
=
'py3'
,
'none'
if
platform
.
system
()
!=
'Windows'
:
python
,
abi
=
'py3'
,
'none'
return
python
,
abi
,
plat
except
ImportError
:
Bdist_wheel
=
None
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment