Skip to content

Commit

Permalink
Merge pull request #96 from arrrlo/develop
Browse files Browse the repository at this point in the history
version 1.3.5
  • Loading branch information
arrrlo authored Feb 5, 2021
2 parents 5cf5f4b + 133b5fc commit 5824e87
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@ dist: xenial
language: python

python:
- 3.5
- 3.6
- 3.7
- 3.8
- 3.9-dev
- 3.9

script:
- pip install .
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 1.3.5

### Fixed in 1.3.5

- Pilow version updated (pull request by [@eladavron](https://github.com/eladavron))
- Fixed x-raw-image://urls (pull request by [@reteps](https://github.com/reteps))

## 1.3.4

### Fixed in 1.3.4
Expand Down
3 changes: 2 additions & 1 deletion google_images_search/google_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ def search(self, params, cache_discovery=False):
continue
except requests.exceptions.SSLError:
continue

except requests.exceptions.InvalidSchema:
continue
yield image['link']


Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def readme():

setup(
name='Google Images Search',
version="1.3.4",
version="1.3.5",

description='Search for image using Google Custom Search API and resize & crop the image afterwords',
long_description=readme(),
Expand All @@ -25,7 +25,6 @@ def readme():
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
Expand All @@ -41,7 +40,7 @@ def readme():
'click~=7.0',
'six~=1.12',
'requests~=2.21',
'Pillow~=7.1.0',
'Pillow~=8.0.1',
'python-resize-image~=1.1',
'google-api-python-client~=1.7',
],
Expand Down

0 comments on commit 5824e87

Please sign in to comment.