Skip to content

Commit

Permalink
updated v0.3.1
Browse files Browse the repository at this point in the history
- Fixed issue with raw_input and input for selsetup.
  • Loading branch information
samapriya committed Oct 4, 2019
1 parent 4f22df3 commit cefd010
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,9 @@ optional arguments:
```
# Changelog

### v0.3.1
- Fixed issue with raw_input and input for selsetup.

### v0.3.0
- Fixed [issue 13](https://github.com/samapriya/geeup/issues/13) non relative import.
- Fixed issues with package import.
Expand Down
2 changes: 1 addition & 1 deletion geeup/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__author__ = 'Samapriya Roy'
__email__ = '[email protected]'
__version__ = '0.3.0'
__version__ = '0.3.1'
5 changes: 4 additions & 1 deletion geeup/sel_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@
pathway=os.path.dirname(os.path.realpath(__file__))
def authenticate():
authorization_url="https://code.earthengine.google.com"
uname=str(raw_input("Enter your Username: "))
try:
uname=str(raw_input("Enter your Username: "))
except Exception as e:
uname=str(input("Enter your Username: "))
passw=str(getpass.getpass("Enter your Password: "))
driver = webdriver.Firefox(executable_path=os.path.join(pathway,"geckodriver.exe"))
driver.get(authorization_url)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def readme():
return f.read()
setuptools.setup(
name='geeup',
version='0.3.0',
version='0.3.1',
packages=find_packages(),
url='https://github.com/samapriya/geeup',
install_requires=['earthengine_api >= 0.1.175','requests >= 2.10.0','retrying >= 1.3.3','beautifulsoup4 >= 4.5.1',
Expand Down

0 comments on commit cefd010

Please sign in to comment.