Skip to content

Commit

Permalink
Merge pull request #7 from radupotop/master
Browse files Browse the repository at this point in the history
Updated to work with Python 3.9
  • Loading branch information
tannart authored Jun 2, 2021
2 parents b86602c + d81760e commit 3f1b3eb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bin/compose-mode
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env python2
#!/usr/bin/env python
from compose_mode import _main
_main.main()
2 changes: 1 addition & 1 deletion compose_mode/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

__version__ = '0.5.6'
__version__ = '0.6.0'
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 3f1b3eb

Please sign in to comment.