Skip to content

Conversation

@crusaderky
Copy link
Owner

@crusaderky crusaderky commented Jun 11, 2025

Run CI for google#1120

Chad-007 and others added 6 commits December 24, 2024 17:55
Bumps the build-time-deps group with 6 updates in the /.github/workflows/requirements directory:

| Package | From | To |
| --- | --- | --- |
| [cibuildwheel](https://github.com/pypa/cibuildwheel) | `2.20.0` | `2.23.0` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.3.2` | `8.3.4` |
| [twine](https://github.com/pypa/twine) | `5.1.1` | `6.1.0` |
| [wheel](https://github.com/pypa/wheel) | `0.44.0` | `0.45.1` |
| [pip](https://github.com/pypa/pip) | `24.2` | `25.0.1` |
| [setuptools](https://github.com/pypa/setuptools) | `72.2.0` | `75.8.2` |



Updates `cibuildwheel` from 2.20.0 to 2.23.0
- [Release notes](https://github.com/pypa/cibuildwheel/releases)
- [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md)
- [Commits](pypa/cibuildwheel@v2.20...v2.23)

Updates `pytest` from 8.3.2 to 8.3.4
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.3.2...8.3.4)

Updates `twine` from 5.1.1 to 6.1.0
- [Release notes](https://github.com/pypa/twine/releases)
- [Changelog](https://github.com/pypa/twine/blob/main/docs/changelog.rst)
- [Commits](pypa/twine@v5.1.1...6.1.0)

Updates `wheel` from 0.44.0 to 0.45.1
- [Release notes](https://github.com/pypa/wheel/releases)
- [Changelog](https://github.com/pypa/wheel/blob/main/docs/news.rst)
- [Commits](pypa/wheel@0.44.0...0.45.1)

Updates `pip` from 24.2 to 25.0.1
- [Changelog](https://github.com/pypa/pip/blob/main/NEWS.rst)
- [Commits](pypa/pip@24.2...25.0.1)

Updates `setuptools` from 72.2.0 to 75.8.2
- [Release notes](https://github.com/pypa/setuptools/releases)
- [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst)
- [Commits](pypa/setuptools@v72.2.0...v75.8.2)

---
updated-dependencies:
- dependency-name: cibuildwheel
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: build-time-deps
- dependency-name: pytest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: build-time-deps
- dependency-name: twine
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: build-time-deps
- dependency-name: wheel
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: build-time-deps
- dependency-name: pip
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: build-time-deps
- dependency-name: setuptools
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: build-time-deps
...

Signed-off-by: dependabot[bot] <[email protected]>
Fixes "`uint32_t` does not name a type" gemma.cpp build errors
@crusaderky crusaderky changed the title DNM Python ci DNM Python CI Jun 11, 2025
@crusaderky crusaderky force-pushed the python-ci branch 6 times, most recently from 97ae99f to cd78a0a Compare June 13, 2025 10:17
@crusaderky crusaderky changed the title DNM Python CI DNM General CI refresh Jun 13, 2025
@crusaderky crusaderky changed the title DNM General CI refresh General CI refresh Jun 13, 2025
@crusaderky crusaderky force-pushed the python-ci branch 3 times, most recently from 8bf8b7b to 0a4d3cc Compare June 27, 2025 13:10
This commit updates the setup.py classifiers to include Python 3.13.
No changes are needed for the GitHub Actions workflow as cibuildwheel will automatically pick up Python 3.13 when it becomes available in the runners.
@reneleonhardt
Copy link

reneleonhardt commented Jun 29, 2025

I guess cmake needs a similar deployment target like CPython uses to allow installing on macOS 10 and fix google#1099

https://github.com/python/cpython/blob/main/.github/workflows/reusable-macos.yml#L51

MACOSX_DEPLOYMENT_TARGET=10.15

python/cpython#128155

Error on unguarded-availability in Darwin builds

This prevents introduction of unguarded use of symbols that would fail on older systems.

The build system purports to support macOS 10.3+, but the GitHub runners default Xcode version only supports 10.13+ and python/cpython#128156 means 10.15+ is required. Here, we set that as the target in CI.

@crusaderky
Copy link
Owner Author

I guess cmake needs a similar deployment target like CPython uses to allow installing on macOS 10 and fix google#1099

https://github.com/python/cpython/blob/main/.github/workflows/reusable-macos.yml#L51

MACOSX_DEPLOYMENT_TARGET=10.15

python/cpython#128155

Error on unguarded-availability in Darwin builds

This prevents introduction of unguarded use of symbols that would fail on older systems.
The build system purports to support macOS 10.3+, but the GitHub runners default Xcode version only supports 10.13+ and python/cpython#128156 means 10.15+ is required. Here, we set that as the target in CI.

Thanks for the suggestion, but I want to avoid scope creep as much as possible.
Please open a separate PR (you can run CI on your own fork) that builds on top of #7.

Bumps the github-actions group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [actions/upload-artifact](https://github.com/actions/upload-artifact) | `3` | `4` |
| [actions/checkout](https://github.com/actions/checkout) | `4.1.7` | `4.2.2` |
| [actions/setup-python](https://github.com/actions/setup-python) | `5.1.1` | `5.6.0` |
| [svenstaro/upload-release-action](https://github.com/svenstaro/upload-release-action) | `2.9.0` | `2.11.1` |
| [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) | `3.2.0` | `3.6.0` |
| [tj-actions/glob](https://github.com/tj-actions/glob) | `22.0.1` | `22.0.2` |
| [slsa-framework/slsa-github-generator](https://github.com/slsa-framework/slsa-github-generator) | `2.0.0` | `2.1.0` |



Updates `actions/upload-artifact` from 3 to 4
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3...v4)

Updates `actions/checkout` from 4.1.7 to 4.2.2
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@692973e...11bd719)

Updates `actions/setup-python` from 5.1.1 to 5.6.0
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@39cd149...a26af69)

Updates `svenstaro/upload-release-action` from 2.9.0 to 2.11.1
- [Release notes](https://github.com/svenstaro/upload-release-action/releases)
- [Changelog](https://github.com/svenstaro/upload-release-action/blob/master/CHANGELOG.md)
- [Commits](svenstaro/upload-release-action@04733e0...5e35e58)

Updates `docker/setup-qemu-action` from 3.2.0 to 3.6.0
- [Release notes](https://github.com/docker/setup-qemu-action/releases)
- [Commits](docker/setup-qemu-action@49b3bc8...2910929)

Updates `tj-actions/glob` from 22.0.1 to 22.0.2
- [Release notes](https://github.com/tj-actions/glob/releases)
- [Changelog](https://github.com/tj-actions/glob/blob/main/HISTORY.md)
- [Commits](tj-actions/glob@2944188...2deae40)

Updates `slsa-framework/slsa-github-generator` from 2.0.0 to 2.1.0
- [Release notes](https://github.com/slsa-framework/slsa-github-generator/releases)
- [Changelog](https://github.com/slsa-framework/slsa-github-generator/blob/main/CHANGELOG.md)
- [Commits](slsa-framework/slsa-github-generator@v2.0.0...v2.1.0)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-version: '4'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: actions/checkout
  dependency-version: 4.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
- dependency-name: actions/setup-python
  dependency-version: 5.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
- dependency-name: svenstaro/upload-release-action
  dependency-version: 2.11.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
- dependency-name: docker/setup-qemu-action
  dependency-version: 3.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
- dependency-name: tj-actions/glob
  dependency-version: 22.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-actions
- dependency-name: slsa-framework/slsa-github-generator
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <[email protected]>
@reneleonhardt
Copy link

I understand, good luck getting your good work merged 🤞

taku910 and others added 12 commits July 14, 2025 00:32
…requisites

Update python readme prerequisites
…workflows/requirements/build-time-deps-6649cb3121

Bump the build-time-deps group across 1 directory with 6 updates
Add missing <cstdint> in sentencepiece_processor.h
…github-actions-bbf016268e

Bump the github-actions group across 1 directory with 7 updates
Bumps the github-actions group with 1 update in the / directory: [svenstaro/upload-release-action](https://github.com/svenstaro/upload-release-action).


Updates `svenstaro/upload-release-action` from 2.11.1 to 2.11.2
- [Release notes](https://github.com/svenstaro/upload-release-action/releases)
- [Changelog](https://github.com/svenstaro/upload-release-action/blob/master/CHANGELOG.md)
- [Commits](svenstaro/upload-release-action@5e35e58...81c65b7)

---
updated-dependencies:
- dependency-name: svenstaro/upload-release-action
  dependency-version: 2.11.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <[email protected]>
…github-actions-a04deb2dca

Bump svenstaro/upload-release-action from 2.11.1 to 2.11.2 in the github-actions group across 1 directory
Update README.md: Document required permissions for cloning vcpkg on Unix‐like systems
@crusaderky
Copy link
Owner Author

Superseded by google/sentencepiece master branch

@crusaderky crusaderky closed this Aug 11, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

8 participants