Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
### Ticket #17846 ### Problem description The build file created would have the older tag being part of the name. See example in https://github.com/tenstorrent/tt-metal/releases/tag/v0.56.0-rc24 with the wheel file having the name of `ttnn-0.56.0rc19.dev3+any-cp38-cp38-linux_x86_64.whl` ### What's changed In setup.py, there is a class that determines the version name and it relies on inferring the available tags in the git checkout. We have unbound the job named `build-artifact` from `create-tag`. This meant that the tag was not created before the wheel was created. Adding the dependency fixed the problem. ### Checklist - [ ] [All post commit](https://github.com/tenstorrent/tt-metal/actions/workflows/all-post-commit-workflows.yaml) CI passes - [ ] [Blackhole Post commit](https://github.com/tenstorrent/tt-metal/actions/workflows/blackhole-post-commit.yaml) CI passes (if applicable) - [ ] [Model regression](https://github.com/tenstorrent/tt-metal/actions/workflows/perf-models.yaml) CI passes (if applicable) - [ ] [Device performance regression](https://github.com/tenstorrent/tt-metal/actions/workflows/perf-device-models.yaml) CI passes (if applicable) - [ ] **(For models and ops writers)** Full [new models tests](https://github.com/tenstorrent/tt-metal/actions/workflows/full-new-models-suite.yaml) CI passes (if applicable) - [ ] New/Existing tests provide coverage for changes
- Loading branch information