tinybird-toolset 2.4.2__tar.gz → 2.4.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. {tinybird_toolset-2.4.2/src/tinybird_toolset.egg-info → tinybird_toolset-2.4.3}/PKG-INFO +1 -1
  2. {tinybird_toolset-2.4.2 → tinybird_toolset-2.4.3}/README.md +14 -6
  3. {tinybird_toolset-2.4.2 → tinybird_toolset-2.4.3}/setup.py +1 -1
  4. {tinybird_toolset-2.4.2 → tinybird_toolset-2.4.3/src/tinybird_toolset.egg-info}/PKG-INFO +1 -1
  5. {tinybird_toolset-2.4.2 → tinybird_toolset-2.4.3}/LICENSE +0 -0
  6. {tinybird_toolset-2.4.2 → tinybird_toolset-2.4.3}/MANIFEST.in +0 -0
  7. {tinybird_toolset-2.4.2 → tinybird_toolset-2.4.3}/conf.py +0 -0
  8. {tinybird_toolset-2.4.2 → tinybird_toolset-2.4.3}/setup.cfg +0 -0
  9. {tinybird_toolset-2.4.2 → tinybird_toolset-2.4.3}/src/chtoolset/__init__.py +0 -0
  10. {tinybird_toolset-2.4.2 → tinybird_toolset-2.4.3}/src/chtoolset/query.py +0 -0
  11. {tinybird_toolset-2.4.2 → tinybird_toolset-2.4.3}/src/tinybird_toolset.egg-info/SOURCES.txt +0 -0
  12. {tinybird_toolset-2.4.2 → tinybird_toolset-2.4.3}/src/tinybird_toolset.egg-info/dependency_links.txt +0 -0
  13. {tinybird_toolset-2.4.2 → tinybird_toolset-2.4.3}/src/tinybird_toolset.egg-info/requires.txt +0 -0
  14. {tinybird_toolset-2.4.2 → tinybird_toolset-2.4.3}/src/tinybird_toolset.egg-info/top_level.txt +0 -0
  15. {tinybird_toolset-2.4.2 → tinybird_toolset-2.4.3}/tests/test_check_compatible_types.py +0 -0
  16. {tinybird_toolset-2.4.2 → tinybird_toolset-2.4.3}/tests/test_check_write_query.py +0 -0
  17. {tinybird_toolset-2.4.2 → tinybird_toolset-2.4.3}/tests/test_chquery.py +0 -0
  18. {tinybird_toolset-2.4.2 → tinybird_toolset-2.4.3}/tests/test_convert_to_row_binary.py +0 -0
  19. {tinybird_toolset-2.4.2 → tinybird_toolset-2.4.3}/tests/test_explain_ast.py +0 -0
  20. {tinybird_toolset-2.4.2 → tinybird_toolset-2.4.3}/tests/test_get_columns_from_create_query.py +0 -0
  21. {tinybird_toolset-2.4.2 → tinybird_toolset-2.4.3}/tests/test_get_left_table.py +0 -0
  22. {tinybird_toolset-2.4.2 → tinybird_toolset-2.4.3}/tests/test_internal_cache.py +0 -0
  23. {tinybird_toolset-2.4.2 → tinybird_toolset-2.4.3}/tests/test_normalize_query_keep_names.py +0 -0
  24. {tinybird_toolset-2.4.2 → tinybird_toolset-2.4.3}/tests/test_normalize_table_column.py +0 -0
  25. {tinybird_toolset-2.4.2 → tinybird_toolset-2.4.3}/tests/test_parse_create_materialized_view_target_table.py +0 -0
  26. {tinybird_toolset-2.4.2 → tinybird_toolset-2.4.3}/tests/test_replace_tables.py +0 -0
  27. {tinybird_toolset-2.4.2 → tinybird_toolset-2.4.3}/tests/test_replace_tables_backward_compat.py +0 -0
  28. {tinybird_toolset-2.4.2 → tinybird_toolset-2.4.3}/tests/test_rewrite_aggregation_states.py +0 -0
  29. {tinybird_toolset-2.4.2 → tinybird_toolset-2.4.3}/tests/test_tables.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tinybird-toolset
3
- Version: 2.4.2
3
+ Version: 2.4.3
4
4
  Home-page: https://gitlab.com/tinybird/clickhouse-toolset
5
5
  Author: Tinybird.co
6
6
  Author-email: support@tinybird.co
@@ -245,7 +245,7 @@ Check tests directory
245
245
 
246
246
  ## Release
247
247
 
248
- Releasing a new version requires publishing wheels for three platforms: Linux x86_64, Linux ARM64 (automated via CI), and macOS ARM64 (manual).
248
+ Releasing a new version requires publishing wheels for three platforms: Linux x86_64, Linux ARM64, and macOS ARM64. All are automated via CI when the MR is merged to `master`.
249
249
 
250
250
  ### 1. Prepare the release
251
251
 
@@ -253,23 +253,31 @@ Releasing a new version requires publishing wheels for three platforms: Linux x8
253
253
  2. Update `CHANGELOG.md`
254
254
  3. Create a MR with these changes and merge to `master`
255
255
 
256
- ### 2. Linux release (automatic)
256
+ ### 2. Automated release (CD)
257
257
 
258
- Linux x86_64 and ARM64 wheels are published automatically when the MR is merged to `master`. The CI detects the `setup.py` change, and the `release` job will:
258
+ When the MR is merged to `master` and `setup.py` changed, wheels for all platforms are deployed to PyPI automatically:
259
259
 
260
- - Compare the version in `setup.py` with the latest version on PyPI (skips if already published)
260
+ | Platform | CI job | Runner |
261
+ |----------|--------|--------|
262
+ | Linux x86_64 + ARM64 | `release` | Docker (`amd64-spot` / `arm64-spot`) |
263
+ | macOS ARM64 | `release/macos arm64` | Native Apple Silicon (`saas-macos-large-m2pro`) |
264
+
265
+ The Linux `release` job will:
261
266
  - Collect auditwheel-repaired wheels for both x86_64 and ARM64
262
267
  - Build the source distribution
263
268
  - Upload everything to PyPI
264
269
  - Create a git tag `vX.Y.Z` automatically
265
270
 
271
+ The macOS `release/macos arm64` job runs `release.sh` on a native Apple Silicon runner to build, delocate, test, and upload macOS ARM64 wheels.
272
+
266
273
  The `PYPI_TOKEN` CI/CD variable must be configured in GitLab (Settings > CI/CD > Variables) with a valid PyPI API token.
267
274
 
268
- ### 3. macOS release (manual)
275
+ ### 3. Manual macOS release
269
276
 
270
- macOS ARM64 wheels must be built and uploaded from a Mac with Apple Silicon using `release.sh`:
277
+ To run the macOS release manually from a Mac with Apple Silicon:
271
278
 
272
279
  ```bash
280
+ export TWINE_USERNAME=__token__
273
281
  export TWINE_PASSWORD=pypi-... # PyPI API token
274
282
  ./release.sh
275
283
  ```
@@ -1,7 +1,7 @@
1
1
  from setuptools import setup, Extension
2
2
 
3
3
  NAME = 'tinybird-toolset'
4
- VERSION = '2.4.2'
4
+ VERSION = '2.4.3'
5
5
 
6
6
  try:
7
7
  from conf import *
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tinybird-toolset
3
- Version: 2.4.2
3
+ Version: 2.4.3
4
4
  Home-page: https://gitlab.com/tinybird/clickhouse-toolset
5
5
  Author: Tinybird.co
6
6
  Author-email: support@tinybird.co