-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* enum34 only where it's needed In some configurations installing enum34 into a newer Python can break stdlib packages as it may mask the stdlib enum module * quotes * use extras_require instead of ; in requirements.txt
- Loading branch information
1 parent
6647271
commit 9ee85c9
Showing
2 changed files
with
3 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
enum34>=1.1.6 | ||
six>=1.11.0 | ||
requests>=2.10.0 | ||
semantic-version>=2.6.0 | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,5 +83,8 @@ | |
':python_version >= "3.5"': [ | ||
'aiohttp', | ||
], | ||
':python_version < "3.4"': [ | ||
'enum34>=1.1.6', | ||
], | ||
}, | ||
) |