Skip to content

Commit 937776b

Browse files
authored
0.10.0
#2
1 parent 1f0772f commit 937776b

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.github/workflows/install_wheels.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
name: install wheels
22

3-
on: [push]
3+
on:
4+
push:
5+
tags:
6+
- '*'
47

58
jobs:
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:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ Note that `pip` >= 19.0 is required.
1414

1515
```bash
1616
pip 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
```

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import sys
22
from setuptools import setup
33

4-
UTM_VERSION = '0.9.1'
4+
UTM_VERSION = '0.10.0'
55
BASE_URL = 'https://github.com/cms-l1-globaltrigger'
66

77
def _version():
@@ -11,14 +11,14 @@ def _version():
1111
def _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

1919
def _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

2323
def _wheel_name(name, version):
2424
basename = name.replace('-', '_')

0 commit comments

Comments
 (0)