Skip to content

Commit

Permalink
Fix psf#2288. Change urllib3 and chardet workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
syedsuhail committed Oct 19, 2014
1 parent f7ecad8 commit 3a6348d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
1 change: 1 addition & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -156,3 +156,4 @@ Patches and Suggestions
- Jonathan Wong <[email protected]> (`@ContinuousFunction <https://github.com/ContinuousFunction>`_)
- Martin Jul (`@mjul <https://github.com/mjul>`_)
- Joe Alcorn (`@buttscicles <https://github.com/buttscicles>`_)
- Syed Suhail Ahmed <[email protected]> (`@syedsuhail <https://github.com/syedsuhail>`_)
10 changes: 2 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,10 @@ certs:
deps: urllib3 chardet

urllib3:
rm -fr requests/packages/urllib3
git clone https://github.com/shazow/urllib3.git
mv urllib3/urllib3 requests/packages/
rm -fr urllib3
git clone https://github.com/shazow/urllib3.git && rm -fr requests/packages/urllib3 && mv urllib3/urllib3 requests/packages/ && rm -fr urllib3

chardet:
rm -fr requests/packages/chardet
git clone https://github.com/chardet/chardet.git
mv chardet/chardet requests/packages/
rm -fr chardet
git clone https://github.com/chardet/chardet.git && rm -fr requests/packages/chardet && mv chardet/chardet requests/packages/ && rm -fr chardet

publish:
python setup.py register
Expand Down

0 comments on commit 3a6348d

Please sign in to comment.