From c257a986c52b0f316874552a4add358993464e2d Mon Sep 17 00:00:00 2001 From: PlanB Date: Wed, 17 Mar 2021 23:35:04 +0900 Subject: [PATCH] [0.2] Python 3.5- version support stopped --- .github/workflows/push_pr_hook.yml | 2 +- .github/workflows/scheduled_e2e_test.yml | 2 +- CHANGELOG.md | 4 ++++ google_play_scraper/__init__.py | 2 +- setup.py | 5 +---- 5 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/push_pr_hook.yml b/.github/workflows/push_pr_hook.yml index 6d383ad..7105d8b 100644 --- a/.github/workflows/push_pr_hook.yml +++ b/.github/workflows/push_pr_hook.yml @@ -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 diff --git a/.github/workflows/scheduled_e2e_test.yml b/.github/workflows/scheduled_e2e_test.yml index a73e552..bfa8a8f 100644 --- a/.github/workflows/scheduled_e2e_test.yml +++ b/.github/workflows/scheduled_e2e_test.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b74220..0ad0fee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/google_play_scraper/__init__.py b/google_play_scraper/__init__.py index a31ac5d..e1ea192 100644 --- a/google_play_scraper/__init__.py +++ b/google_play_scraper/__init__.py @@ -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" diff --git a/setup.py b/setup.py index 3525fb3..693c390 100644 --- a/setup.py +++ b/setup.py @@ -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", @@ -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",