Skip to content

Commit

Permalink
Remove official support for Python 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
miso-belica committed Dec 8, 2019
1 parent f607cf2 commit d267433
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ python:
# https://github.com/travis-ci/travis-ci/issues/2219#issuecomment-41804942
# https://snarky.ca/how-to-use-your-project-travis-to-help-test-python-itself/
- "2.7"
- "3.4"
- "3.5"
- "3.5-dev"
- "3.6"
- "3.6-dev"
- "3.7"
- "3.7-dev"
- "3.8"
- "3.8-dev"
- "nightly"
before_install:
Expand Down
5 changes: 3 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ with your code. Nothing is written in stone but please try to respect them.
4. Please **respect the code style**. I don't want to set specific strict rules here because I think it's
possible to respect style from all the code around. For example you will not use `'` for strings
when you see that the code uses `"` ...
5. Make sure you have Python 2.7 or 3.4+ installed. Then, install all the required dependencies
and run the tests:
5. Make sure you have Python 2.7 or 3.5+ installed. Also Python 3.4 and maybe older versions work but since it reached
end-of-life you could have difficulties with the transitive dependencies that dropped the support already.
Then, install all the required dependencies and run the tests:

```sh
$ pip install .
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
],
)

0 comments on commit d267433

Please sign in to comment.