Skip to content

Commit 6203613

Browse files
committed
0.14.0
1 parent c19f707 commit 6203613

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/build_wheel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
build:
77
runs-on: ubuntu-latest
88
env:
9-
PYTHON_VERSION: "3.7"
9+
PYTHON_VERSION: "3.9"
1010
steps:
1111
- uses: actions/checkout@v2
1212
- name: Set up Python ${{ env.PYTHON_VERSION }}

.github/workflows/install_wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ on: [workflow_dispatch]
55
jobs:
66
build:
77
env:
8-
VERSION: "0.13.0"
8+
VERSION: "0.14.0"
99
PYPI_INDEX: https://globaltrigger.web.cern.ch/pypi/
1010
strategy:
1111
matrix:
1212
os: [ubuntu-latest, macos-latest]
13-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
13+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1414
runs-on: ${{ matrix.os }}
1515
steps:
1616
- uses: actions/checkout@v2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ It is recommended to install the utm Python bindings in a virtual environment
1111
which makes it also possible to run multiple versions of utm in parallel.
1212

1313
```bash
14-
pip install --index-url https://globaltrigger.web.cern.ch/pypi/ tm-python==0.13.0
14+
pip install --index-url https://globaltrigger.web.cern.ch/pypi/ tm-python==0.14.0
1515
```

setup.cfg

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = tm-python
3-
version = 0.13.0
3+
version = 0.14.0
44
description = Meta package providing Python bindings for tm-table, tm-grammar and tm-eventsetup.
55
long_description = file: README.md
66
long_description_content_type = text/markdown
@@ -11,7 +11,7 @@ license = GPLv3
1111

1212
[options]
1313
install_requires =
14-
tm-table==0.13.0
15-
tm-grammar==0.13.0
16-
tm-eventsetup==0.13.0
17-
python_requires = >=3.6
14+
tm-table==0.14.0
15+
tm-grammar==0.14.0
16+
tm-eventsetup==0.14.0
17+
python_requires = >=3.9

0 commit comments

Comments
 (0)