Skip to content

Commit

Permalink
[0.2] Python 3.5- version support stopped
Browse files Browse the repository at this point in the history
  • Loading branch information
JoMingyu committed Mar 17, 2021
1 parent d9ee67e commit c257a98
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push_pr_hook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
max-parallel: 3
matrix:
python-version: [3.3, 3.4, 3.5, 3.6, 3.7, 3.8]
python-version: [3.6, 3.7, 3.8]

steps:
- uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scheduled_e2e_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
max-parallel: 3
matrix:
python-version: [3.3, 3.4, 3.5, 3.6, 3.7, 3.8]
python-version: [3.6, 3.7, 3.8]

steps:
- uses: actions/checkout@v1
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,3 +98,7 @@
## v.0.1.2
> Add `editorsChoice` property to `app` feature
- Added `editorsChoice` property to `app` feature.

## v.0.2
> Python 3.3, 3.4, 3.5 support stopped
- after this version, Python 3.6+ supports only.
2 changes: 1 addition & 1 deletion google_play_scraper/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
from .features.app import app
from .features.reviews import reviews, reviews_all

VERSION = __version__ = "0.1.2"
VERSION = __version__ = "0.2"
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name="google-play-scraper",
python_requires=">=3.3",
python_requires=">=3.6",
version=__version__,
url="https://github.com/JoMingyu/google-play-scraper",
license="MIT",
Expand All @@ -20,9 +20,6 @@
"Operating System :: Microsoft",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
Expand Down

0 comments on commit c257a98

Please sign in to comment.