Skip to content

Commit 9accc9b

Browse files
Fix PyPy πŸ›ž
1 parent ebd7022 commit 9accc9b

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

β€Ž.github/workflows/main.ymlβ€Ž

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff 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 }}

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and 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

β€Žblacksheep/__init__.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"""
55

66
__author__ = "Roberto Prevato <[email protected]>"
7-
__version__ = "2.5.0"
7+
__version__ = "2.5.1"
88

99
from .contents import Content as Content
1010
from .contents import FormContent as FormContent

0 commit comments

Comments
Β (0)