-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove the dependency on six module.
Since Botocore is now used to load data for Boto 3 there is no more need in the existing codebase for the `six` module. This commit removes it and removes the `boto3.compat` module. We can re-add it in the future if it is needed.
- Loading branch information
1 parent
2190b6b
commit 9995761
Showing
3 changed files
with
0 additions
and
16 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,6 +1,5 @@ | ||
-e git://github.com/boto/botocore.git@develop#egg=botocore | ||
-e git://github.com/boto/bcdoc.git@develop#egg=bcdoc | ||
-e git://github.com/boto/jmespath.git@develop#egg=jmespath | ||
six==1.7.3 | ||
nose==1.3.3 | ||
mock==1.0.1 |
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 |
---|---|---|
|
@@ -29,7 +29,6 @@ def get_version(): | |
'botocore==0.78.0', | ||
'bcdoc==0.12.2', | ||
'jmespath==0.5.0', | ||
'six==1.7.3', | ||
] | ||
|
||
setup( | ||
|