From d81760e61e8106856a73bf2c1d164bae0a6d1767 Mon Sep 17 00:00:00 2001 From: Radu Potop Date: Wed, 2 Jun 2021 20:10:31 +0100 Subject: [PATCH] Updated to work with Python 3.9 --- bin/compose-mode | 2 +- compose_mode/__init__.py | 2 +- setup.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/compose-mode b/bin/compose-mode index 43f61be..7806fad 100755 --- a/bin/compose-mode +++ b/bin/compose-mode @@ -1,3 +1,3 @@ -#!/usr/bin/env python2 +#!/usr/bin/env python from compose_mode import _main _main.main() diff --git a/compose_mode/__init__.py b/compose_mode/__init__.py index 37f4b55..b6f9abf 100644 --- a/compose_mode/__init__.py +++ b/compose_mode/__init__.py @@ -1,4 +1,4 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -__version__ = '0.5.6' +__version__ = '0.6.0' diff --git a/setup.py b/setup.py index ef16f59..77fcb4f 100644 --- a/setup.py +++ b/setup.py @@ -8,13 +8,13 @@ install_requires = [ 'docker-compose >= 1.7', - 'PyYAML >= 3.10, < 4', + 'PyYAML >= 3.10', ] classifiers = [ 'Development Status :: 2 - Pre-Alpha', 'License :: OSI Approved :: MIT License', - 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.9', ] with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme_file: