Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated "colorama" package to latest #192

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ sudo: false

python:
- "2.7"
- "3.4"
- "3.5"
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The latest version of Colorama does support Python 3.5. Are you sure about this?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@renskiy you're right, we should support Python 3.5.

I've made an additional commit and returned Python 3.5 to travis.

Copy link
Author

@barbossa barbossa Jul 26, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, but I've forgot do the same with fabricio doc. Need one more commit 🙂

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@renskiy I think you should make squash commits before merging and combine my 7 commits into 1.

Github interface should support squashing before merging.

- "3.6"
- "3.7"
- "3.8"
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Requirements
Local
-----

- Python 2.7, 3.4*, 3.5*, 3.6*, 3.7*, 3.8*
- Python 2.7, 3.6*, 3.7*, 3.8*
- (optional) Docker 1.9+ for building Docker images

\* `Fabric3`_ is used for compatibility with Python 3.x
Expand Down
6 changes: 6 additions & 0 deletions changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changelog
=========

Release 0.5.9
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

compatibility-breaking changes should increase major version too. I think it will 0.6 after all

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@renskiy done.

-------------

- Enhancement: updated "colorama" package to 0.4.x
- Enhancement: dropped old python versions for travis

Release 0.5.8
-------------

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
'docker-py>=1.8.1,<2.0',
'six>=1.13.0',
'dpath<2',
'colorama<0.4',
'colorama<0.5',
]

setup(
name='fabricio',
version='0.5.8',
version='0.5.9',
author='Rinat Khabibiev',
author_email='srenskiy@gmail.com',
packages=list(map('fabricio.'.__add__, find_packages('fabricio'))) + ['fabricio'],
Expand Down