Skip to content

Commit

Permalink
packaging module error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
laszlolevi committed Jun 20, 2022
1 parent 5bc400e commit 73aa9be
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion poco/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.99.0'
__version__ = '0.99.1'
2 changes: 1 addition & 1 deletion poco/poco.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@


END_STRING = """See 'poco help <command>' for more information on a specific command."""
__version__ = '0.99.0'
__version__ = '0.99.1'


class Poco(object):
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 73aa9be

Please sign in to comment.