We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Looks like the futurize script, available after running pip install future, might be a good place to start. Here's a good reference: http://python-future.org/compatible_idioms.html
futurize
pip install future
You can set up travis to test across all python versions like this:
diff --git a/.travis.yml b/.travis.yml index 17306a6..116b0a4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,13 @@ language: python python: + - "2.6" - "2.7" + - "3.2" + - "3.3" + - "3.4" + - "3.5" + - "3.5-dev" # 3.5 development branch + - "nightly" # currently points to 3.6-dev install: - pip install codecov pep8 - python setup.py install
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Looks like the
futurize
script, available after runningpip install future
, might be a good place to start. Here's a good reference: http://python-future.org/compatible_idioms.htmlYou can set up travis to test across all python versions like this:
The text was updated successfully, but these errors were encountered: