Removing support of Python 3.6
Sorry I tried
This commit is contained in:
@@ -12,10 +12,6 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- python-version: "3.6.15"
|
|
||||||
os: ubuntu-20.04
|
|
||||||
env:
|
|
||||||
TOXENV: py36
|
|
||||||
- python-version: "3.7"
|
- python-version: "3.7"
|
||||||
os: ubuntu-latest
|
os: ubuntu-latest
|
||||||
env:
|
env:
|
||||||
|
|||||||
@@ -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)
|
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
|
### 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
|
```bash
|
||||||
# Using pip
|
# Using pip
|
||||||
pip install scrapling
|
pip install scrapling
|
||||||
|
|||||||
@@ -50,12 +50,12 @@ setup(
|
|||||||
install_requires=[
|
install_requires=[
|
||||||
"requests>=2.3",
|
"requests>=2.3",
|
||||||
"lxml>=4.5",
|
"lxml>=4.5",
|
||||||
"cssselect>=1.0",
|
"cssselect>=1.2",
|
||||||
"w3lib",
|
"w3lib",
|
||||||
"orjson>=3",
|
"orjson>=3",
|
||||||
"tldextract",
|
"tldextract",
|
||||||
],
|
],
|
||||||
python_requires=">=3.6",
|
python_requires=">=3.7",
|
||||||
url="https://github.com/D4Vinci/Scrapling",
|
url="https://github.com/D4Vinci/Scrapling",
|
||||||
project_urls={
|
project_urls={
|
||||||
"Documentation": "https://github.com/D4Vinci/Scrapling/Docs", # For now
|
"Documentation": "https://github.com/D4Vinci/Scrapling/Docs", # For now
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
# and then run "tox" from this directory.
|
# and then run "tox" from this directory.
|
||||||
|
|
||||||
[tox]
|
[tox]
|
||||||
envlist = pre-commit,py36,py37,py38,py39,py310,py311,py312
|
envlist = pre-commit,py37,py38,py39,py310,py311,py312
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
usedevelop = True
|
usedevelop = True
|
||||||
|
|||||||
Reference in New Issue
Block a user