From 7f34c52606d200172cedd8195a40965a2f776358 Mon Sep 17 00:00:00 2001 From: Dimon55319 Date: Thu, 18 Aug 2022 21:55:53 +0900 Subject: [PATCH] fix "Varies with device" when get version --- google_play_scraper/constants/element.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/google_play_scraper/constants/element.py b/google_play_scraper/constants/element.py index db27168..11013bb 100644 --- a/google_play_scraper/constants/element.py +++ b/google_play_scraper/constants/element.py @@ -107,7 +107,7 @@ class ElementSpecs: "released": ElementSpec(5, [1, 2, 10, 0]), "updated": ElementSpec(5, [1, 2, 145, 0, 1, 0]), "version": ElementSpec( - 4, [1, 2, 140, 0, 0, 0], fallback_value="Varies with device" + 5, [1, 2, 140, 0, 0, 0], fallback_value="Varies with device" ), "recentChanges": ElementSpec(5, [1, 2, 144, 1, 1], unescape_text), "recentChangesHTML": ElementSpec(5, [1, 2, 144, 1, 1]), diff --git a/pyproject.toml b/pyproject.toml index d115513..ada232f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "google-play-scraper" -version = "1.2.1" +version = "1.2.2" description = "Google-Play-Scraper provides APIs to easily crawl the Google Play Store for Python without any external dependencies!" authors = ["JoMingyu "] license = "MIT"