From ffdd3d50421a25718d1a391a00b4ec4ecc56e80a Mon Sep 17 00:00:00 2001 From: Adam Jakab Date: Sun, 26 May 2024 15:31:05 +0200 Subject: [PATCH] pipeline fix 3rd --- .github/workflows/test_release_deploy.yml | 2 +- beetsplug/goingrunning/about.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test_release_deploy.yml b/.github/workflows/test_release_deploy.yml index 7404471..f260dc0 100644 --- a/.github/workflows/test_release_deploy.yml +++ b/.github/workflows/test_release_deploy.yml @@ -23,7 +23,7 @@ jobs: run: | python -m pip install --upgrade pip pip install beets alive-progress - pip install pytest nose coverage mock six yaml requests + pip install pytest nose coverage mock six pyyaml requests - name: Test run: | pytest diff --git a/beetsplug/goingrunning/about.py b/beetsplug/goingrunning/about.py index 59036aa..933a15b 100755 --- a/beetsplug/goingrunning/about.py +++ b/beetsplug/goingrunning/about.py @@ -6,7 +6,7 @@ __email__ = u'adam@jakab.pro' __copyright__ = u'Copyright (c) 2020, {} <{}>'.format(__author__, __email__) __license__ = u'License :: OSI Approved :: MIT License' -__version__ = u'1.2.8' +__version__ = u'1.2.9' __status__ = u'Stable' __PACKAGE_TITLE__ = u'GoingRunning' diff --git a/setup.py b/setup.py index e1ccf95..da03be0 100755 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ tests_require=[ 'pytest', 'nose', 'coverage', - 'mock', 'six', 'yaml', + 'mock', 'six', 'pyyaml', 'requests' ],