Skip to content

Commit

Permalink
Merge pull request #108 from phenobarbital/new-version
Browse files Browse the repository at this point in the history
New version
  • Loading branch information
phenobarbital authored Feb 21, 2024
2 parents dff171a + 7853761 commit 3dae6b1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Python package build and publish
name: Build and Publish Python 🐍 distributions 📦 to PyPI and TestPyPI
on:
release:
types: [created]
Expand All @@ -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
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion proxylists/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__ = '[email protected]'
__license__ = 'BSD'
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 3dae6b1

Please sign in to comment.