bump versions, after recent publications (#1646)

* bump versions, after recent publications

* Changelog updates and version bumps

* Correct broken URL's in setup.py's

* Correct SRA Client description (append "Client")

* Add convenience script for uninstalling all pkgs

* Add documentation link to SRA Client README.md
This commit is contained in:
F. Eugene Aumson
2019-04-30 15:56:40 -04:00
committed by GitHub
parent d6115cff25
commit 222a151eff
18 changed files with 90 additions and 44 deletions

6
python-packages/uninstall_all Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/bash
PKG_FOLDERS=$(find ./ -maxdepth 1 -type d -exec basename {} \; | grep -v -e '^.$' | grep -v '.mypy_cache' | tr '_' '-')
for i in $PKG_FOLDERS; do PKGS="${PKGS} 0x-$i"; done
echo pip uninstall --yes $PKGS 0x-web3 web3
pip uninstall --yes $PKGS 0x-web3 web3