diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9276c49..48c25be 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -30,7 +30,7 @@ jobs: strategy: fail-fast: false matrix: - python: ['3.8', '3.10'] + python: ['3.10'] task: # --show-capture=no on purpose, -s for captchas - name: Test run: | diff --git a/.readthedocs.yaml b/.readthedocs.yaml index c0bdb2f..2d36eb5 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -7,7 +7,7 @@ sphinx: build: os: "ubuntu-22.04" tools: - python: "3.8" + python: "3.10" python: install: diff --git a/docs/source/installation.md b/docs/source/installation.md index dd3742a..aaf45dd 100644 --- a/docs/source/installation.md +++ b/docs/source/installation.md @@ -1,7 +1,7 @@ Installation ============ -**vk-url-scraper** supports Python >= 3.8. +**vk-url-scraper** supports Python >= 3.10. ## Installing with `pip` diff --git a/setup.py b/setup.py index 2465742..9c4c159 100644 --- a/setup.py +++ b/setup.py @@ -57,7 +57,7 @@ def fix_url_dependencies(req: str) -> str: package_data={"vk_url_scraper": ["py.typed"]}, install_requires=read_requirements("requirements.txt"), extras_require={"dev": read_requirements("dev-requirements.txt")}, - python_requires=">=3.8", + python_requires=">=3.10", entry_points={ "console_scripts": [ "vk_url_scraper=vk_url_scraper.__main__:main",