Skip to content

Commit 62a8040

Browse files
authored
Merge pull request #3 from cms-l1-globaltrigger/devel-0.11.x
0.11.0
2 parents 72d15b8 + 9695508 commit 62a8040

File tree

5 files changed

+16
-9
lines changed

5 files changed

+16
-9
lines changed

.github/workflows/install_wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
env:
12-
VERSION: "0.10.0"
12+
VERSION: "0.11.0"
1313
USER: cms-l1-globaltrigger
1414
strategy:
1515
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.10.0
17+
pip install git+https://github.com/cms-l1-globaltrigger/tm-python.git@0.11.0
1818
```

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["setuptools"]
3+
build-backend = "setuptools.build_meta"

setup.cfg

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[metadata]
2+
name = tm-python
3+
description = Meta package providing Python bindings for tmTable, tmGrammar and tmEventSetup.
4+
long_description = file: README.md
5+
long_description_content_type = text/markdown
6+
author = Bernhard Arnold
7+
author_email = [email protected]
8+
url = https://github.com/cms-l1-globaltrigger/tm-python
9+
license = GPLv3

setup.py

Lines changed: 2 additions & 7 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.10.0'
4+
UTM_VERSION = '0.11.0'
55
BASE_URL = 'https://github.com/cms-l1-globaltrigger'
66

77
def _version():
@@ -11,7 +11,7 @@ def _version():
1111
def _platform():
1212
"""Returns platform signature for wheels."""
1313
if sys.platform.startswith('linux'):
14-
return 'manylinux_2_5_x86_64.manylinux1_x86_64'
14+
return 'manylinux_2_17_x86_64.manylinux2014_x86_64'
1515
elif sys.platform.startswith('darwin'):
1616
return 'macosx_10_13_x86_64'
1717
raise ValueError("Platform not supported: {}".format(sys.platform))
@@ -49,11 +49,6 @@ def _require(name, version):
4949
install_requires.append(_require('tm-eventsetup', UTM_VERSION))
5050

5151
setup(
52-
name='tm-python',
5352
version=UTM_VERSION,
54-
author="Bernhard Arnold",
55-
author_email="[email protected]",
56-
description="""Meta package providing Python bindings for tmTable, tmGrammar and tmEventSetup""",
5753
install_requires=install_requires,
58-
license="GPLv3"
5954
)

0 commit comments

Comments
 (0)