From f1d44eceb48b0aef96849da549dc939b2758de04 Mon Sep 17 00:00:00 2001 From: blnkoff Date: Sun, 29 Sep 2024 23:59:05 +0300 Subject: [PATCH] Support for python versions from 3.9 --- README.md | 9 +++------ pyproject.toml | 16 +++++++++------- 2 files changed, 12 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 6abbf89..178c201 100644 --- a/README.md +++ b/README.md @@ -2,18 +2,15 @@


-[![PyPi Version](https://img.shields.io/pypi/v/adspower)](https://pypi.org/project/adspower/) -[![PyPI Downloads](https://img.shields.io/pypi/dm/adspower?label=downloads)](https://pypi.org/project/adspower/) -[![License](https://img.shields.io/github/license/blnkoff/adspower.svg)](https://pypi.org/project/adspower/) -[![Last Commit](https://img.shields.io/github/last-commit/blnkoff/adspower.svg)](https://pypi.org/project/adspower/) -[![Development Status](https://img.shields.io/pypi/status/adspower)](https://pypi.org/project/adspower/) +[![Python versions](https://img.shields.io/pypi/pyversions/adspower?color=%231D4DFF)](https://pypi.org/project/adspower/) +[![PyPi Version](https://img.shields.io/pypi/v/adspower?color=%231D4DFF)](https://pypi.org/project/adspower/) The package for interacting with API of anti-detect browser [AdsPower](https://www.adspower.com). - **[Overview](#quick-start)** - **[Installing](#installing-adspower)** -- **[Bug reports](https://github.com/blnkoff/adspower/issues)** +- **[Bug reports](https://github.com/CrocoFactory/adspower/issues)** The project is made by the **[Croco Factory](https://github.com/CrocoFactory)** team diff --git a/pyproject.toml b/pyproject.toml index 5cbceac..d815f34 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = 'adspower' -version = '2.0.3.post1' +version = '2.1.0' description = 'The package for interacting with API of anti-detect browser AdsPower.' authors = ['Alexey '] license = 'MIT' @@ -11,16 +11,20 @@ classifiers = [ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Topic :: Software Development :: Libraries :: Python Modules', - 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3 :: Only', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', + 'License :: OSI Approved :: MIT License', + 'Operating System :: OS Independent', 'License :: OSI Approved :: MIT License', - 'Operating System :: Microsoft :: Windows', - 'Operating System :: MacOS' + 'Typing :: Typed' ] packages = [{ include = 'adspower' }] [tool.poetry.dependencies] -python = '^3.11' +python = '^3.9' httpx = "^0.27.0" selenium = {version = "^4.16.0", optional = true} playwright = {version = "^1.42.0", optional = true} @@ -33,8 +37,6 @@ playwright = ["playwright"] pytest = "^7.4.3" twine = "^4.0.2" build = "^1.0.3" -sphinx-rtd-theme = "^2.0.0" -sphinx = "^7.2.6" faker = "^24.9.0" pytest-asyncio = "^0.23.6"