File tree Expand file tree Collapse file tree 3 files changed +9
-6
lines changed
Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 11name : install wheels
22
3- on : [push]
3+ on :
4+ push :
5+ tags :
6+ - ' *'
47
58jobs :
69 build :
710 runs-on : ubuntu-latest
811 env :
9- VERSION : " 0.9.1 "
12+ VERSION : " 0.10.0 "
1013 USER : cms-l1-globaltrigger
1114 strategy :
1215 matrix :
Original file line number Diff line number Diff line change @@ -14,5 +14,5 @@ Note that `pip` >= 19.0 is required.
1414
1515``` bash
1616pip install --upgrade pip
17- pip install git+https://github.com/cms-l1-globaltrigger/tm-python.git@0.9.1
17+ pip install git+https://github.com/cms-l1-globaltrigger/tm-python.git@0.10.0
1818```
Original file line number Diff line number Diff line change 11import sys
22from setuptools import setup
33
4- UTM_VERSION = '0.9.1 '
4+ UTM_VERSION = '0.10.0 '
55BASE_URL = 'https://github.com/cms-l1-globaltrigger'
66
77def _version ():
@@ -11,14 +11,14 @@ def _version():
1111def _platform ():
1212 """Returns platform signature for wheels."""
1313 if sys .platform .startswith ('linux' ):
14- return 'manylinux1 '
14+ return 'manylinux_2_5_x86_64.manylinux1_x86_64 '
1515 elif sys .platform .startswith ('darwin' ):
1616 return 'darwin'
1717 raise ValueError ("Platform not supported: {}" .format (sys .platform ))
1818
1919def _signature ():
2020 # Note: no more 'm' abiflag since Python 3.8
21- return 'cp{0}-cp{0}{1}-{2}_x86_64 ' .format (_version (), sys .abiflags , _platform ())
21+ return 'cp{0}-cp{0}{1}-{2}' .format (_version (), sys .abiflags , _platform ())
2222
2323def _wheel_name (name , version ):
2424 basename = name .replace ('-' , '_' )
You can’t perform that action at this time.
0 commit comments