-
Notifications
You must be signed in to change notification settings - Fork 74
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
Only support Python >= 3.5 #43
Conversation
As the Window testing on appveyor will be replaced by TravisCI, I won't bother with the failed appveyor builds. |
shutil.rmtree(self.dir_name) | ||
|
||
|
||
TemporaryDirectory = getattr( |
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.
You have to import TemporaryDirectory from tempfile now or use it by tempfile.TemporaryDirectory
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.
ups, thanks
13b3761
to
f074473
Compare
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.
let's see what happens with travis...
The rest looks good to me. I also dropped six as a dependency.
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.
viewed all files.
The diff for |
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.
OK so far.
As discussed in issue #40, I've now added the hard Python version requirements for the currently supported versions to the setup.py
Next commits, we can change the line to
python_requires=">=3.5.*",