-
Notifications
You must be signed in to change notification settings - Fork 723
Release v2.9.0 #629
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
Release v2.9.0 #629
Conversation
setup.cfg
Outdated
@@ -19,4 +19,3 @@ filterwarnings = | |||
|
|||
[pytype] | |||
inputs = stable_baselines | |||
python_version = 3.5 |
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.
Are we dropping support for 3.5? If so we should specify the lowest supported version here. We should probably also add a python_requires
in setup.py
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.
Is there a way to allow using pytype with python > 3.5?
I removed this line because I had to comment it each time I wanted to check typing, which was quite annoying.
If there is no other mean, I'll put that line back.
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.
so, no drop of python 3.5 support yet (I would have created an issue if this was the case)
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.
I think pytype
always type checks with the Python version of the interpreter it's running under, which is a bit annoying. If you don't specify it then it'll use the system default. It seems unfortunate to get different type check results depending on what system you're running on, but uncommenting the line does sound frustrating.
Could you install Python 3.5 in addition to the Python interpreter you normally use?
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.
I can but this would mean duplicating a complete conda env only for this particular purpose.
i'll put the line back
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.
LGTM
Description
This is the (Christmas) v2.9.0 release.
Motivation and Context
I also updated the documentation and docstrings at some places:
Types of changes
Checklist:
pytest
andpytype
both pass.