min py to 3.10

This commit is contained in:
msramalho
2024-01-23 13:01:38 +00:00
parent ccb8c1f5c7
commit 95d249f5d0
4 changed files with 4 additions and 4 deletions

View File

@@ -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: |

View File

@@ -7,7 +7,7 @@ sphinx:
build:
os: "ubuntu-22.04"
tools:
python: "3.8"
python: "3.10"
python:
install:

View File

@@ -1,7 +1,7 @@
Installation
============
**vk-url-scraper** supports Python >= 3.8.
**vk-url-scraper** supports Python >= 3.10.
## Installing with `pip`

View File

@@ -57,7 +57,7 @@ setup(
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",