From ef1f24049be61692e7ea603e338de88d51e972fe Mon Sep 17 00:00:00 2001 From: Bernhard Arnold Date: Wed, 15 Mar 2023 14:39:30 +0100 Subject: [PATCH] fixes #7 --- .github/workflows/python-package.yml | 4 ++-- README.md | 2 +- requirements.txt | 2 +- setup.cfg | 2 +- tmDiff/__init__.py | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 082b252..4a2da36 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -26,8 +26,8 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install flake8 pylint - pip install -r requirements.txt + python -m pip install flake8 pylint + python -m pip install . - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names diff --git a/README.md b/README.md index 4275317..f17f2fa 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Install using pip (>= 19.0). ```bash pip install --upgrade pip -pip install git+https://github.com/cms-l1-globaltrigger/tm-diff.git@0.8.0 +pip install git+https://github.com/cms-l1-globaltrigger/tm-diff.git@0.8.1 ``` ## Basic usage diff --git a/requirements.txt b/requirements.txt index 65fa539..03fcc76 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -tm-python @ git+https://github.com/cms-l1-globaltrigger/tm-python@0.11.0 +tm-python @ git+https://github.com/cms-l1-globaltrigger/tm-python@0.11.1 diff --git a/setup.cfg b/setup.cfg index 2c0addb..9280480 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,7 +15,7 @@ classifiers = python_requires = >=3.6 packages = find: install_requires = - tm-python @ git+https://github.com/cms-l1-globaltrigger/tm-python@0.11.0 + tm-python @ git+https://github.com/cms-l1-globaltrigger/tm-python@0.11.1 test_suite = tests [options.packages.find] diff --git a/tmDiff/__init__.py b/tmDiff/__init__.py index 777f190..8088f75 100644 --- a/tmDiff/__init__.py +++ b/tmDiff/__init__.py @@ -1 +1 @@ -__version__ = "0.8.0" +__version__ = "0.8.1"