From 73aa9be241da7296ee89b59ddb80b484b6c23317 Mon Sep 17 00:00:00 2001 From: laszlolevi Date: Mon, 20 Jun 2022 16:12:10 +0200 Subject: [PATCH] packaging module error fix --- poco/__init__.py | 2 +- poco/poco.py | 2 +- requirements.txt | 1 + setup.py | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/poco/__init__.py b/poco/__init__.py index 77eb36c..2d9bef0 100644 --- a/poco/__init__.py +++ b/poco/__init__.py @@ -1 +1 @@ -__version__ = '0.99.0' +__version__ = '0.99.1' diff --git a/poco/poco.py b/poco/poco.py index f813f8e..c508ef4 100644 --- a/poco/poco.py +++ b/poco/poco.py @@ -32,7 +32,7 @@ END_STRING = """See 'poco help ' for more information on a specific command.""" -__version__ = '0.99.0' +__version__ = '0.99.1' class Poco(object): diff --git a/requirements.txt b/requirements.txt index 0ad0f57..0c5dbb9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,5 +6,6 @@ docopt==0.6.2 docker-compose==1.25.4 pygithub==1.45 python-gitlab==1.15.0 +packaging==21.3 pytest-cov mock; python_version < '3' diff --git a/setup.py b/setup.py index f41a578..c868e5b 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ from setuptools.command.test import test as TestCommand requires = ['pyyaml==5.3', 'pyaml==19.12.0', 'svn==1.0.1', 'gitpython==2.1.15', 'docopt==0.6.2', - 'docker-compose==1.25.4', 'pygithub==1.45', 'python-gitlab==1.15.0'] + 'docker-compose==1.25.4', 'pygithub==1.45', 'python-gitlab==1.15.0', 'packaging==21.3'] test_requires = ['pytest==3.1.2', 'pytest-cov==2.5.1'] if sys.version_info[0] < 3: