Removing support of Python 3.6
Sorry I tried
This commit is contained in:
@@ -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:
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user