Skip to content

Commit be1130f

Browse files
committed
requires meta package tm-python
1 parent 1f84d3f commit be1130f

File tree

4 files changed

+13
-26
lines changed

4 files changed

+13
-26
lines changed

README.md

Lines changed: 9 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
XML Menu Diff
22
=============
33

4+
## Install
5+
6+
Install using pip (>= 19.0).
7+
8+
```bash
9+
pip install --upgrade pip
10+
pip install git+https://github.com/cms-l1-globaltrigger/tm-diff.git@0.6.2
11+
```
12+
413
## Basic usage
514

615
Compare the content of two XML trigger menus.
@@ -77,25 +86,3 @@ This is equivalent to:
7786
```bash
7887
tm-diff foo.xml bar.xml > diff.txt # pipe stdout to file
7988
```
80-
81-
## Dependencies
82-
83-
Install following utm wheels or build utm python bindings.
84-
85-
* [`tm-table>=0.7.3`](https://github.com/cms-l1-globaltrigger/tm-table)
86-
87-
## Install
88-
89-
Install using pip
90-
91-
```bash
92-
pip install git+https://github.com/cms-l1-globaltrigger/tm-diff.git@0.6.1
93-
```
94-
95-
Install from local source
96-
97-
```bash
98-
git clone https://gitlab.cern.ch/cms-l1-globaltrigger/tm-diff.git
99-
cd tm-diff
100-
python setup.py install
101-
```

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
tm-table>=0.7.3
1+
tm-python @ git+https://github.com/cms-l1-globaltrigger/tm-python@0.7.3

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44

55
setup(
66
name="tm-diff",
7-
version='0.6.1',
7+
version='0.6.2',
88
url="https://github.com/cms-l1-globaltrigger/tm-diff",
99
author="Bernhard Arnold",
1010
author_email="bernhard.arnold@cern.ch",
1111
description="Compare the content of two XML trigger menus.",
1212
long_description=long_description,
1313
packages=['tmDiff'],
1414
install_requires=[
15-
'tm-table>=0.7.3',
15+
'tm-python @ git+https://github.com/cms-l1-globaltrigger/tm-python@0.7.3',
1616
],
1717
entry_points={
1818
'console_scripts': [

tmDiff/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.6.1'
1+
__version__ = '0.6.2'

0 commit comments

Comments
 (0)