-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
There's really no need to support Python versions before Python 3. Also, Python 3.6 included a number of important features, e.g. improved type hints, ordered `dict`s and `dataclasses` via a backport. So not supporting 3.5 and earlier versions makes sense, too. Last but not least, I think it makes sense to only support CPython for now and worry about other implementations later. Adding and removing these versions is as easy as adding/removing them from "setup.cfg" and running `tox -e bootstrap` which should update ".travis.yml", ".appveyor.yml" and "tox.ini". The only thing which one might have to manually update is the metadata in "setup.py".
- Loading branch information
Showing
5 changed files
with
1 addition
and
153 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters