From f0db07a31ff14af519b3aea1f8900b5d089efc8f Mon Sep 17 00:00:00 2001 From: Karim shoair Date: Sat, 22 Feb 2025 15:25:35 +0200 Subject: [PATCH] build: pumping up deps and version to 0.2.94 --- scrapling/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scrapling/__init__.py b/scrapling/__init__.py index 7e099c8..a184e7b 100644 --- a/scrapling/__init__.py +++ b/scrapling/__init__.py @@ -5,7 +5,7 @@ from scrapling.fetchers import (AsyncFetcher, CustomFetcher, Fetcher, from scrapling.parser import Adaptor, Adaptors __author__ = "Karim Shoair (karim.shoair@pm.me)" -__version__ = "0.2.93" +__version__ = "0.2.94" __copyright__ = "Copyright (c) 2024 Karim Shoair" diff --git a/setup.cfg b/setup.cfg index 780469c..cb144c1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = scrapling -version = 0.2.93 +version = 0.2.94 author = Karim Shoair author_email = karim.shoair@pm.me description = Scrapling is an undetectable, powerful, flexible, adaptive, and high-performance web scraping library for Python. diff --git a/setup.py b/setup.py index 98a6f33..6eb2534 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ with open("README.md", "r", encoding="utf-8") as fh: setup( name="scrapling", - version="0.2.93", + version="0.2.94", description="""Scrapling is a powerful, flexible, and high-performance web scraping library for Python. It simplifies the process of extracting data from websites, even when they undergo structural changes, and offers impressive speed improvements over many popular scraping tools.""", @@ -61,7 +61,7 @@ setup( 'httpx[brotli,zstd, socks]', 'playwright>=1.49.1', 'rebrowser-playwright>=1.49.1', - 'camoufox[geoip]>=0.4.10' + 'camoufox[geoip]>=0.4.11' ], python_requires=">=3.9", url="https://github.com/D4Vinci/Scrapling",