Skip to content

Commit c13ed60

Browse files
authored
Merge branch 'main' into feature_branch/mutli_table_benchmark
2 parents 515bc2b + 7827131 commit c13ed60

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

.github/workflows/dependency_checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
python-version-file: 'pyproject.toml'
1515
- name: Install dependencies
1616
run: |
17-
python -m pip install .[dev]
17+
python -m pip install --no-cache-dir .[dev]
1818
make check-deps OUTPUT_FILEPATH=latest_requirements.txt
1919
make fix-lint
2020
- name: Create pull request

.github/workflows/install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
make package
3030
- name: Install package
3131
run: |
32-
python -m pip install "unpacked_sdist/."
32+
python -m pip install --no-cache-dir "unpacked_sdist/."
3333
- name: Test by importing packages
3434
run: |
3535
python -c "import sdgym"

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Install dependencies
2727
run: |
2828
python -m pip install --upgrade pip
29-
python -m pip install invoke .[test]
29+
python -m pip install --no-cache-dir invoke .[test]
3030
- name: Run integration tests
3131
run: invoke integration
3232
- if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.13

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ jobs:
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip
24-
python -m pip install invoke .[dev]
24+
python -m pip install --no-cache-dir invoke .[dev]
2525
- name: Run lint checks
2626
run: invoke lint

.github/workflows/minimum.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ jobs:
3131
- name: Install dependencies
3232
run: |
3333
python -m pip install --upgrade pip
34-
python -m pip install invoke .[test]
34+
python -m pip install --no-cache-dir invoke .[test]
3535
- name: Test with minimum versions
3636
run: invoke minimum

.github/workflows/prepare_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
python -m pip install requests==2.31.0
3131
python -m pip install bandit==1.7.7
3232
python -m pip install packaging
33-
python -m pip install .[test]
33+
python -m pip install --no-cache-dir .[test]
3434
3535
- name: Check for prerelease dependencies
3636
run: python scripts/check_for_prereleases.py

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Install dependencies
3636
run: |
3737
python -m pip install --upgrade pip
38-
python -m pip install .[dev]
38+
python -m pip install --no-cache-dir .[dev]
3939
4040
- name: Create wheel
4141
run: |

.github/workflows/run_benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Install dependencies
2020
run: |
2121
python -m pip install --upgrade pip
22-
python -m pip install -e .[dev]
22+
python -m pip install --no-cache-dir -e .[dev]
2323
2424
- name: Run SDGym Benchmark
2525
env:

.github/workflows/unit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Install dependencies
3232
run: |
3333
python -m pip install --upgrade pip
34-
python -m pip install invoke .[test]
34+
python -m pip install --no-cache-dir invoke .[test]
3535
- name: Run unit tests
3636
run: invoke unit
3737
- if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.13

.github/workflows/upload_benchmark_results.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Install dependencies
2727
run: |
2828
python -m pip install --upgrade pip
29-
python -m pip install -e .[dev]
29+
python -m pip install --no-cache-dir -e .[dev]
3030
3131
- name: Upload SDGym Benchmark
3232
env:

0 commit comments

Comments
 (0)