Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/dependency_checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
python-version-file: 'pyproject.toml'
- name: Install dependencies
run: |
python -m pip install .[dev]
python -m pip install --no-cache-dir .[dev]
make check-deps OUTPUT_FILEPATH=latest_requirements.txt
make fix-lint
- name: Create pull request
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
make package
- name: Install package
run: |
python -m pip install "unpacked_sdist/."
python -m pip install --no-cache-dir "unpacked_sdist/."
- name: Test by importing packages
run: |
python -c "import sdgym"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install invoke .[test]
python -m pip install --no-cache-dir invoke .[test]
- name: Run integration tests
run: invoke integration
- if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.13
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install invoke .[dev]
python -m pip install --no-cache-dir invoke .[dev]
- name: Run lint checks
run: invoke lint
2 changes: 1 addition & 1 deletion .github/workflows/minimum.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install invoke .[test]
python -m pip install --no-cache-dir invoke .[test]
- name: Test with minimum versions
run: invoke minimum
2 changes: 1 addition & 1 deletion .github/workflows/prepare_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
python -m pip install requests==2.31.0
python -m pip install bandit==1.7.7
python -m pip install packaging
python -m pip install .[test]
python -m pip install --no-cache-dir .[test]

- name: Check for prerelease dependencies
run: python scripts/check_for_prereleases.py
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[dev]
python -m pip install --no-cache-dir .[dev]

- name: Create wheel
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run_benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e .[dev]
python -m pip install --no-cache-dir -e .[dev]

- name: Run SDGym Benchmark
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install invoke .[test]
python -m pip install --no-cache-dir invoke .[test]
- name: Run unit tests
run: invoke unit
- if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.13
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upload_benchmark_results.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e .[dev]
python -m pip install --no-cache-dir -e .[dev]

- name: Upload SDGym Benchmark
env:
Expand Down
Loading