From 4fc569521705d472025cdeb930bfa94bf61ebbf3 Mon Sep 17 00:00:00 2001 From: Jesus Lara Date: Wed, 21 Feb 2024 16:32:16 +0100 Subject: [PATCH 1/2] new version --- Makefile | 2 +- proxylists/version.py | 2 +- setup.py | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 1d3c5c6..e617f17 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ venv: echo 'run `source .venv/bin/activate` to start develop ProxyLists' develop: - pip install wheel==0.38.4 + pip install wheel==0.42.0 pip install -e . python -m pip install -Ur docs/requirements-dev.txt diff --git a/proxylists/version.py b/proxylists/version.py index 527ceb1..84fe7ae 100644 --- a/proxylists/version.py +++ b/proxylists/version.py @@ -3,7 +3,7 @@ __title__ = 'proxylists' __description__ = ('Package for getting useful proxy servers, ' 'can use lists like hidemy or proxydb.') -__version__ = '0.12.0' +__version__ = '0.12.3' __author__ = 'Jesus Lara' __author_email__ = 'jesuslarag@gmail.com' __license__ = 'BSD' diff --git a/setup.py b/setup.py index 2c15b02..05d4275 100644 --- a/setup.py +++ b/setup.py @@ -73,11 +73,11 @@ def readme(): install_requires=[ "asyncio==3.4.3", "uvloop>=0.19.0", - "aiohttp==3.9.1", + "aiohttp==3.9.2", 'requests>=2.28.2', 'requests[socks]>=2.28.2', - 'orjson==3.9.9', - 'lxml==4.9.3' + 'orjson==3.9.10', + 'lxml>=4.6.0' ], tests_require=[ 'pytest>=5.4.0', From 785376138fbb80a0e02d4d427cee60be9f34b80b Mon Sep 17 00:00:00 2001 From: Jesus Lara Date: Wed, 21 Feb 2024 16:35:22 +0100 Subject: [PATCH 2/2] release workflow --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f304f77..e6c9ce2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,4 +1,4 @@ -name: Python package build and publish +name: Build and Publish Python 🐍 distributions 📦 to PyPI and TestPyPI on: release: types: [created] @@ -25,4 +25,4 @@ jobs: TWINE_USERNAME: __token__ TWINE_PASSWORD: ${{ secrets.PROXYLISTS_PYPI_API_TOKEN }} run: | - twine upload dist/*-manylinux*.whl + twine upload dist/*.whl