Skip to content

Commit

Permalink
min python to 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
msramalho committed Jan 23, 2024
1 parent e525ff2 commit ccb8c1f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ['3.7', '3.10']
python: ['3.8', '3.10']
task: # --show-capture=no on purpose, -s for captchas
- name: Test
run: |
Expand Down
2 changes: 1 addition & 1 deletion docs/source/installation.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Installation
============

**vk-url-scraper** supports Python >= 3.7.
**vk-url-scraper** supports Python >= 3.8.

## Installing with `pip`

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.7",
python_requires=">=3.8",
entry_points={
"console_scripts": [
"vk_url_scraper=vk_url_scraper.__main__:main",
Expand Down

0 comments on commit ccb8c1f

Please sign in to comment.