Skip to content

Commit 4e0ac98

Browse files
committed
build: pump version and deps
1 parent 3f32fa9 commit 4e0ac98

8 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/docker-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
workflow_dispatch:
99
inputs:
1010
version:
11-
description: "Release version to tag the images with, like 'v0.4.13'. Leave it empty to only push 'latest'"
11+
description: "Release version to tag the images with, like 'v0.4.14'. Leave it empty to only push 'latest'"
1212
required: false
1313
default: ''
1414

agent-skill/Scrapling-Skill.zip

0 Bytes
Binary file not shown.

agent-skill/Scrapling-Skill/SKILL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: scrapling-official
33
description: Scrape web pages using Scrapling with anti-bot bypass (like Cloudflare Turnstile), stealth headless browsing, spiders framework, adaptive scraping, and JavaScript rendering. Use when asked to scrape, crawl, or extract data from websites; web_fetch fails; the site has anti-bot protections; write Python code to scrape/crawl; or write spiders.
4-
version: "0.4.13"
4+
version: "0.4.14"
55
license: Complete terms in LICENSE.txt
66
metadata:
77
homepage: "https://scrapling.readthedocs.io/en/latest/index.html"
@@ -40,7 +40,7 @@ Blazing fast crawls with real-time stats and streaming. Built by Web Scrapers fo
4040

4141
Create a virtual Python environment through any way available, like `venv`, then inside the environment do:
4242

43-
`pip install "scrapling[all]>=0.4.13"`
43+
`pip install "scrapling[all]>=0.4.14"`
4444

4545
Then do this to download all the browsers' dependencies:
4646

agent-skill/Scrapling-Skill/examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ All examples collect **all 100 quotes across 10 pages**.
99
Make sure Scrapling is installed:
1010

1111
```bash
12-
pip install "scrapling[all]>=0.4.13"
12+
pip install "scrapling[all]>=0.4.14"
1313
scrapling install --force
1414
```
1515

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
[project]
66
name = "scrapling"
77
# Static version instead of a dynamic version so we can get better layer caching while building docker, check the docker file to understand
8-
version = "0.4.13"
8+
version = "0.4.14"
99
description = "Scrapling is an undetectable, powerful, flexible, high-performance Python library that makes Web Scraping easy and effortless as it should be!"
1010
readme = {file = "README.md", content-type = "text/markdown"}
1111
license = {file = "LICENSE"}
@@ -72,13 +72,13 @@ dependencies = [
7272
[project.optional-dependencies]
7373
fetchers = [
7474
"click>=8.3.0",
75-
"curl_cffi>=0.16.1b1",
75+
"curl_cffi>=0.16.0",
7676
"playwright>=1.61.0",
7777
"patchright>=1.61.2",
7878
"browserforge>=1.2.4",
7979
"apify-fingerprint-datapoints>=0.15.0",
8080
"msgspec>=0.21.1",
81-
"anyio>=4.13.0",
81+
"anyio>=4.14.0",
8282
"protego>=0.6.2",
8383
]
8484
ai = [

scrapling/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__author__ = "Karim Shoair (karim.shoair@pm.me)"
2-
__version__ = "0.4.13"
2+
__version__ = "0.4.14"
33
__copyright__ = "Copyright (c) 2024 Karim Shoair"
44

55
from typing import Any, TYPE_CHECKING

server.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
"mimeType": "image/png"
1515
}
1616
],
17-
"version": "0.4.13",
17+
"version": "0.4.14",
1818
"packages": [
1919
{
2020
"registryType": "pypi",
2121
"identifier": "scrapling",
22-
"version": "0.4.13",
22+
"version": "0.4.14",
2323
"runtimeHint": "uvx",
2424
"packageArguments": [
2525
{

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = scrapling
3-
version = 0.4.13
3+
version = 0.4.14
44
author = Karim Shoair
55
author_email = karim.shoair@pm.me
66
description = Scrapling is an undetectable, powerful, flexible, high-performance Python library that makes Web Scraping easy and effortless as it should be!

0 commit comments

Comments
 (0)