File tree Expand file tree Collapse file tree 4 files changed +32
-3
lines changed
Expand file tree Collapse file tree 4 files changed +32
-3
lines changed Original file line number Diff line number Diff line change 2424 - name : Setup poetry
2525 uses : abatilo/actions-poetry@v4
2626 with :
27- poetry-version : ' 2.1.4 '
27+ poetry-version : ' 1.8.5 '
2828
2929 - name : Setup a local virtual environment
3030 run : |
5656 with :
5757 name : python-package-distributions
5858 path : dist/
59+ - name : Check that wheel and tarball contains ably/sync/
60+ run : |
61+ # Check wheel
62+ WHEEL=$(ls dist/*.whl | head -n 1)
63+ echo "Checking wheel: $WHEEL"
64+ if unzip -l "$WHEEL" | grep -q "ably/sync/"; then
65+ echo "✅ Found ably/sync/ in wheel"
66+ else
67+ echo "❌ ably/sync/ not found in wheel"
68+ exit 1
69+ fi
70+
71+ # Check tarball
72+ TARBALL=$(ls dist/*.tar.gz | head -n 1)
73+ echo "Checking tarball: $TARBALL"
74+ if tar -tzf "$TARBALL" | grep -q "ably/sync/"; then
75+ echo "✅ Found ably/sync/ in tarball"
76+ else
77+ echo "❌ ably/sync/ not found in tarball"
78+ exit 1
79+ fi
5980
6081 publish-to-pypi :
6182 name : Publish Python distribution to PyPI
Original file line number Diff line number Diff line change 11# Change Log
22
3+ ## [ v2.1.1] ( https://github.com/ably/ably-python/tree/v2.1.1 )
4+
5+ [ Full Changelog] ( https://github.com/ably/ably-python/compare/v2.1.0...v2.1.1 )
6+
7+ ## What's Changed
8+
9+ * Added missed ` sync ` folder to the wheel package
10+
311## [ v2.1.0] ( https://github.com/ably/ably-python/tree/v2.1.0 )
412
513[ Full Changelog] ( https://github.com/ably/ably-python/compare/v2.0.13...v2.1.0 )
Original file line number Diff line number Diff line change 1616logger .addHandler (logging .NullHandler ())
1717
1818api_version = '3'
19- lib_version = '2.1.0 '
19+ lib_version = '2.1.1 '
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " ably"
3- version = " 2.1.0 "
3+ version = " 2.1.1 "
44description = " Python REST and Realtime client library SDK for Ably realtime messaging service"
55license = " Apache-2.0"
66authors = [
" Ably <[email protected] >" ]
You can’t perform that action at this time.
0 commit comments