mirror of https://github.com/astral-sh/ruff
Update maturin to 1.0 (#4605)
* Refactor and fix task trigger for dependent jobs in other repos I have confirmed (https://github.com/konstin/ruff-pre-commit/actions/runs/5056928280/jobs/9075029868) that this does dispatch the workflow when running with act, `owner: 'konstin'`, `needs` commented out and personal access token. I can't properly test the actual release workflow, and i'm unsure how to best handle the next release after this was merged (should we do a beta release or will this break everything that assumes we only do stable releases?) The command for act is ``` act -j update-dependents -s RUFF_PRE_COMMIT_PAT=<...> ``` * delete old file * Update maturin to 1.0 A 1.0 release for maturin 🎉
This commit is contained in:
parent
3cbaaa4795
commit
73e179ffab
|
|
@ -26,7 +26,7 @@ requires-python = ">=3.7"
|
|||
repository = "https://github.com/charliermarsh/ruff#subdirectory=crates/flake8_to_ruff"
|
||||
|
||||
[build-system]
|
||||
requires = ["maturin>=0.15.2,<0.16"]
|
||||
requires = ["maturin>=1.0,<2.0"]
|
||||
build-backend = "maturin"
|
||||
|
||||
[tool.maturin]
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
[build-system]
|
||||
requires = ["maturin>=0.15.2,<0.16"]
|
||||
requires = ["maturin>=1.0,<2.0"]
|
||||
|
||||
build-backend = "maturin"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue