Removing support of Python 3.6

Sorry I tried
This commit is contained in:
Karim shoair
2024-10-14 00:45:09 +03:00
parent 5569ee9a39
commit b7ab7f31e7
4 changed files with 4 additions and 8 deletions
-4
View File
@@ -12,10 +12,6 @@ jobs:
fail-fast: false
matrix:
include:
- python-version: "3.6.15"
os: ubuntu-20.04
env:
TOXENV: py36
- python-version: "3.7"
os: ubuntu-latest
env:
+1 -1
View File
@@ -70,7 +70,7 @@ quote.path # DOM path to element (List)
To keep it simple, all methods can be chained on top of each other as long as you are chaining methods that return an element (It's called an `Adaptor` object) or a List of Adaptors (It's called `Adaptors` object)
### Installation
Scrapling is a breeze to get started with - We only require at least Python 3.6 to work and the rest of the requirements are installed automatically with the package.
Scrapling is a breeze to get started with - We only require at least Python 3.7 to work and the rest of the requirements are installed automatically with the package.
```bash
# Using pip
pip install scrapling
+2 -2
View File
@@ -50,12 +50,12 @@ setup(
install_requires=[
"requests>=2.3",
"lxml>=4.5",
"cssselect>=1.0",
"cssselect>=1.2",
"w3lib",
"orjson>=3",
"tldextract",
],
python_requires=">=3.6",
python_requires=">=3.7",
url="https://github.com/D4Vinci/Scrapling",
project_urls={
"Documentation": "https://github.com/D4Vinci/Scrapling/Docs", # For now
+1 -1
View File
@@ -4,7 +4,7 @@
# and then run "tox" from this directory.
[tox]
envlist = pre-commit,py36,py37,py38,py39,py310,py311,py312
envlist = pre-commit,py37,py38,py39,py310,py311,py312
[testenv]
usedevelop = True