Skip to content

Commit

Permalink
Use a script to automatically set the version in Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
rlouf committed Dec 6, 2024
1 parent 3afffe1 commit a9d667c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/release_pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ jobs:
with:
python-version: '3.10'

- name: Bump Cargo version
run: |
python ./.github/scripts/version_bumper.py --target Cargo.toml "${{ github.ref_name }}"
- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v3
Expand Down Expand Up @@ -71,7 +75,6 @@ jobs:
CIBW_TEST_COMMAND: python -c "import outlines_core; print(outlines_core.__version__)"
CMAKE_PREFIX_PATH: ./dist


- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release_rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Bump Cargo version
run: |
python ./.github/scripts/version_bumper.py --target Cargo.toml "${{ github.ref_name }}"
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "outlines-core"
version = "0.1.21"
version = "0.0.0"
edition = "2021"
description = "Structured Generation"
license = "Apache-2.0"
Expand Down

0 comments on commit a9d667c

Please sign in to comment.