File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed
Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -21,13 +21,12 @@ jobs:
2121 steps :
2222 - run : sudo apt-get install libopenblas-dev gcc
2323 - uses : actions/checkout@v2
24- - uses : astral-sh/setup-uv@v6
24+ - uses : astral-sh/setup-uv@v7
2525 with :
2626 python-version : ${{ matrix.python-version }}
27- - run : which python
28- - run : python --version
29- - run : uv pip install -r ./requirements.txt --system
30- - run : pip install .
27+ - run : make env python-version=${{ matrix.python-version }}
28+ # - run: uv pip install -r ./requirements.txt --system
29+ # - run: pip install .
3130 - run : twine --version
3231 - run : which calculate_rmsd
3332 - run : make test python=python
Original file line number Diff line number Diff line change 11.PHONY : update-format format test test-dist build types upload cov
22
3+ python-version =3.12
4+
35env =./env
46python =./${env}/bin/python
57pytest =./${env}/bin/pytest
@@ -16,7 +18,7 @@ GIT_COMMIT=$(shell git rev-parse --short HEAD)
1618# # Setup
1719
1820env :
19- uv venv ${env}
21+ uv venv ${env} --python ${python-version}
2022 uv pip install -r requirements.txt --python ${python}
2123 ${python} -m pre_commit install
2224 ${python} -m pip install -e .
You can’t perform that action at this time.
0 commit comments