Skip to content

Commit

Permalink
Removing support of Python 3.6
Browse files Browse the repository at this point in the history
Sorry I tried
  • Loading branch information
D4Vinci committed Oct 13, 2024
1 parent 5569ee9 commit b7ab7f3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@
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
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b7ab7f3

Please sign in to comment.