Skip to content

Commit

Permalink
CI: Don't install pre-release packages
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeshingles committed Nov 1, 2024
1 parent 84b5a48 commit ae03308
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Install artistools
run: |
python3 -m pip install uv
python3 -m uv pip install --compile-bytecode --pre --editable .
python3 -m uv pip install --compile-bytecode --editable .
- name: Cache test data
uses: actions/cache@v4
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ jobs:
- name: Install artistools
run: |
python3 -m pip install uv
python3 -m uv pip install --system --pre --upgrade pylint mypy ruff
python3 -m uv pip install --compile-bytecode --pre --editable .
python3 -m uv pip install --system --upgrade pylint mypy ruff
python3 -m uv pip install --compile-bytecode --editable .
- name: Run Ruff
if: always()
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
- name: Install artistools
run: |
python3 -m pip install uv
python3 -m uv pip install --compile-bytecode --pre --editable .
python3 -m uv pip install --compile-bytecode --editable .
- uses: pre-commit/[email protected]

Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
- name: Install artistools
run: |
python3 -m pip install uv
python3 -m uv pip install --compile-bytecode --pre --editable .
python3 -m uv pip install --compile-bytecode --editable .
- name: Cache test data
uses: actions/cache@v4
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ reportAttributeAccessIssue = false
reportCallIssue = true
reportMissingImports = false
reportPossiblyUnboundVariable = false
reportUnecessaryTypeIgnoreComment = true
reportUnnecessaryTypeIgnoreComment = true
reportUnknownVariableType = false
typeCheckingMode = "standard"
useLibraryCodeForTypes = false
Expand Down

0 comments on commit ae03308

Please sign in to comment.