File tree Expand file tree Collapse file tree 3 files changed +9
-6
lines changed
Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -293,16 +293,16 @@ jobs:
293293
294294 - name : Install build dependencies
295295 run : |
296- pip install --upgrade build
296+ pip install --upgrade build wheel setuptools
297297
298298 - name : Build wheels
299299 run : |
300- python -m build
300+ BLACKSHEEP_NO_EXTENSIONS=1 python -m build --wheel
301301
302302 - uses : actions/upload-artifact@v4
303303 with :
304304 name : wheels-${{ matrix.os }}-${{ matrix.python-version }}
305- path : dist
305+ path : dist/*.whl
306306
307307 # Build source distribution
308308 build-sdist :
@@ -358,8 +358,7 @@ jobs:
358358 pip install twine
359359 - name : Publish distribution π¦ to Test PyPI
360360 run : |
361- # twine upload -r testpypi dist/*
362- echo "Skipping upload to Test PyPI"
361+ twine upload -r testpypi dist/*
363362 env :
364363 TWINE_USERNAME : __token__
365364 TWINE_PASSWORD : ${{ secrets.test_pypi_password }}
Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 2.5.1] - 2026-01-30 :wheel :
9+
10+ - Fix problem in workflow and the PyPy distribution wheels.
11+
812## [ 2.5.0] - 2026-01-29 :copilot:
913
1014- Add native HTTP/2 support to the HTTP client with automatic protocol detection
Original file line number Diff line number Diff line change 44"""
55
66__author__ = "Roberto Prevato <[email protected] >" 7- __version__ = "2.5.0 "
7+ __version__ = "2.5.1 "
88
99from .contents import Content as Content
1010from .contents import FormContent as FormContent
You canβt perform that action at this time.
0 commit comments