Skip to content

Commit a6e4682

Browse files
committed
bump versions, fixed setup.py
1 parent 349a605 commit a6e4682

File tree

4 files changed

+13
-17
lines changed

4 files changed

+13
-17
lines changed

.github/workflows/wheel.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
UTM_VERSION: 0.13.0
1111
strategy:
1212
matrix:
13-
python-version: ["3.11"]
13+
python-version: ["3.12"]
1414
steps:
1515
- uses: actions/checkout@v2
1616
- name: Install build dependecies
@@ -30,11 +30,11 @@ jobs:
3030
- name: Install dependencies
3131
run: |
3232
python -m pip install --upgrade pip
33-
pip install wheel
33+
pip install build wheel
3434
- name: Build wheel
3535
run: |
3636
. ./utm-utm_${{ env.UTM_VERSION }}/env.sh # source utm libs
37-
python setup.py bdist_wheel
37+
python -m build --wheel
3838
python -m pip install dist/*-linux_x86_64.whl
3939
- name: Test module
4040
run: |

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -10,43 +10,43 @@ which makes it also possible to use multiple versions in parallel.
1010
### Python 3.12
1111

1212
```bash
13-
pip install https://github.com/cms-l1-globaltrigger/tm-eventsetup/releases/download/0.12.0/tm_eventsetup-0.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
13+
pip install https://github.com/cms-l1-globaltrigger/tm-eventsetup/releases/download/0.13.0/tm_eventsetup-0.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
1414
```
1515

1616
### Python 3.11
1717

1818
```bash
19-
pip install https://github.com/cms-l1-globaltrigger/tm-eventsetup/releases/download/0.12.0/tm_eventsetup-0.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
19+
pip install https://github.com/cms-l1-globaltrigger/tm-eventsetup/releases/download/0.13.0/tm_eventsetup-0.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
2020
```
2121

2222
### Python 3.10
2323

2424
```bash
25-
pip install https://github.com/cms-l1-globaltrigger/tm-eventsetup/releases/download/0.12.0/tm_eventsetup-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
25+
pip install https://github.com/cms-l1-globaltrigger/tm-eventsetup/releases/download/0.13.0/tm_eventsetup-0.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
2626
```
2727

2828
### Python 3.9
2929

3030
```bash
31-
pip install https://github.com/cms-l1-globaltrigger/tm-eventsetup/releases/download/0.12.0/tm_eventsetup-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
31+
pip install https://github.com/cms-l1-globaltrigger/tm-eventsetup/releases/download/0.13.0/tm_eventsetup-0.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
3232
```
3333

3434
### Python 3.8
3535

3636
```bash
37-
pip install https://github.com/cms-l1-globaltrigger/tm-eventsetup/releases/download/0.12.0/tm_eventsetup-0.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
37+
pip install https://github.com/cms-l1-globaltrigger/tm-eventsetup/releases/download/0.13.0/tm_eventsetup-0.13.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
3838
```
3939

4040
### Python 3.7
4141

4242
```bash
43-
pip install https://github.com/cms-l1-globaltrigger/tm-eventsetup/releases/download/0.12.0/tm_eventsetup-0.12.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
43+
pip install https://github.com/cms-l1-globaltrigger/tm-eventsetup/releases/download/0.13.0/tm_eventsetup-0.13.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
4444
```
4545

4646
### Python 3.6
4747

4848
```bash
49-
pip install https://github.com/cms-l1-globaltrigger/tm-eventsetup/releases/download/0.12.0/tm_eventsetup-0.12.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
49+
pip install https://github.com/cms-l1-globaltrigger/tm-eventsetup/releases/download/0.13.0/tm_eventsetup-0.13.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
5050
```
5151

5252
## Build instructions

setup.cfg

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[metadata]
2-
name = tm-table
3-
description = Python bindings for tmTable.
2+
name = tm-eventsetup
3+
description = Python bindings for tmEventSetup.
44
long_description = file: README.md
55
long_description_content_type = text/markdown
66
author = Bernhard Arnold
77
author_email = bernhard.arnold@cern.ch
8-
url = https://github.com/cms-l1-globaltrigger/tm-table
8+
url = https://github.com/cms-l1-globaltrigger/tm-eventsetup
99
license = GPLv3

setup.py

-4
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,7 @@ def run(self):
8989
)
9090

9191
setup(
92-
name='tm-eventsetup',
9392
version=UTM_VERSION,
94-
author="Bernhard Arnold",
95-
author_email="bernhard.arnold@cern.ch",
96-
description="""Python bindings for tmEventSetup""",
9793
ext_modules=[tmEventSetup_ext],
9894
cmdclass={
9995
'build_py': BuildPyCommand,

0 commit comments

Comments
 (0)