File tree Expand file tree Collapse file tree 12 files changed +12
-12
lines changed
Expand file tree Collapse file tree 12 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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 : |
Original file line number Diff line number Diff line change 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 :
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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 :
You can’t perform that action at this time.
0 commit comments