Skip to content

Commit

Permalink
Updated to work with Python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
radupotop committed Jun 2, 2021
1 parent b86602c commit d81760e
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 d81760e

Please sign in to comment.