File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5252 if unzip -l "$WHEEL" | grep -q "ably/sync/"; then
5353 echo "✅ Found ably/sync/ in wheel"
5454 else
55+ unzip -l "$WHEEL"
5556 echo "❌ ably/sync/ not found in wheel"
5657 exit 1
5758 fi
6263 if tar -tzf "$TARBALL" | grep -q "ably/sync/"; then
6364 echo "✅ Found ably/sync/ in tarball"
6465 else
66+ tar -tzf "$TARBALL"
6567 echo "❌ ably/sync/ not found in tarball"
6668 exit 1
6769 fi
Original file line number Diff line number Diff line change @@ -55,4 +55,5 @@ ably/types/options.py.orig
5555test /ably /restsetup.py.orig
5656
5757.idea /** /*
58- ** /ably /sync /** *
58+ ably /sync /**
59+ test /ably /sync /**
Original file line number Diff line number Diff line change @@ -68,7 +68,25 @@ Repository = "https://github.com/ably/ably-python"
6868requires = [" hatchling" ]
6969build-backend = " hatchling.build"
7070
71+ [tool .hatch .build .targets .sdist ]
72+ ignore-vcs = true
73+ include = [
74+ " /ably" ,
75+ " /COPYRIGHT" ,
76+ " /README.md" ,
77+ " /LICENSE" ,
78+ " /LONG_DESCRIPTION.rst" ,
79+ " /images" ,
80+ " /setup.cfg" ,
81+ " /pyproject.toml"
82+ ]
83+ exclude = [
84+ " **/*.pyc" ,
85+ " **/__pycache__"
86+ ]
87+
7188[tool .hatch .build .targets .wheel ]
89+ ignore-vcs = true
7290packages = [" ably" ]
7391
7492[tool .pytest .ini_options ]
You can’t perform that action at this time.
0 commit comments