-
Notifications
You must be signed in to change notification settings - Fork 20
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
Drop support for EOL Python versions, add 3.6, fix failing tests. #2
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your contribution. It would be great if some adjustments are made.
.travis.yml
Outdated
- if [[ "$PY_VER" != "3.2" ]]; then | ||
codecov; | ||
fi | ||
- codecov |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you maintain the style as it was as possible (such as no indent for list bullets)? The diff is unnecessarily complex so that I could hardly track the actual changes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
sqlalchemy_utc.py
Outdated
@@ -3,7 +3,7 @@ | |||
from sqlalchemy.types import DateTime, TypeDecorator | |||
|
|||
__all__ = 'UtcDateTime', '__version__' | |||
__version__ = '0.9.0' | |||
__version__ = '0.9.1' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we're going to drop older versions of Python and SQLAlchemy we'd better bump its minor version, i.e., 0.10.0 instead of 0.9.1.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
57460e5
to
79cb05b
Compare
Codecov Report
@@ Coverage Diff @@
## master #2 +/- ##
=======================================
Coverage 96.55% 96.55%
=======================================
Files 1 1
Lines 29 29
=======================================
Hits 28 28
Misses 1 1
Continue to review full report at Codecov.
|
6b6bd6f
to
9b8301d
Compare
9b8301d
to
18cdc56
Compare
Thanks! |
I have some features that I would like to contribute to your package for use downstream. This PR updates the versions of Python and other libraries used in testing and adjusts how tests are performed. This PR does not change package functionality.