Skip to content

Commit

Permalink
locked
Browse files Browse the repository at this point in the history
  • Loading branch information
robert3005 committed Jul 31, 2024
1 parent 30062b0 commit 2dd20ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup-python/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ runs:
# We always run `rye sync` even if the cache fetch was successful since it builds our Rust extensions for us.
run: rye sync --no-lock
env:
MATURIN_PEP517_ARGS: "--profile dev"
MATURIN_PEP517_ARGS: "--profile dev --locked"

- name: Export Path
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion pyvortex/test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
def pytest_sessionstart():
"""Pytest plugin to trigger maturin builds before running tests."""
working_dir = pathlib.Path(__file__).parent.parent
subprocess.check_call(["maturin", "develop", "-v", "--skip-install", "--locked", "--frozen"], cwd=working_dir)
subprocess.check_call(["maturin", "develop", "-v", "--skip-install", "--locked"], cwd=working_dir)

0 comments on commit 2dd20ff

Please sign in to comment.