Skip to content

Commit

Permalink
fix: path to wheel
Browse files Browse the repository at this point in the history
oesteban committed May 17, 2024
1 parent 315aab9 commit c6b63b2
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -137,7 +137,8 @@ jobs:
no_output_timeout: 2h
command: |
mkdir -p /tmp/tests/{artifacts,summaries}
docker run -u $( id -u ) -it --rm -w /src/nitransforms \
docker run -u $( id -u ) -it --rm \
-w /src/nitransforms -v $PWD:/src/nitransforms \
-v /tmp/data/nitransforms-tests:/data -e TEST_DATA_HOME=/data \
-e COVERAGE_FILE=/tmp/summaries/.pytest.coverage \
-v /tmp/fslicense/license.txt:/opt/freesurfer/license.txt:ro \
@@ -176,7 +177,7 @@ jobs:
command: |
python3 -m venv /tmp/buildenv
source /tmp/buildenv/bin/activate
python3 -m pip install "setuptools >= 45.0" wheel "setuptools_scm[toml] >= 6.2" \
python3 -m pip install "setuptools >= 45.0" build wheel "setuptools_scm[toml] >= 6.2" \
"pip>=10.0.1" twine docutils
python3 -m build
twine check dist/nitransforms*
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -199,7 +199,7 @@ ENV MKL_NUM_THREADS=1 \
# CRITICAL: Make sure python setup.py --version has been run at least once
# outside the container, with access to the git history.
COPY --from=src /src/dist/*.whl .
RUN python -m pip install --no-cache-dir $( ls /src/dist/*.whl )[all]
RUN python -m pip install --no-cache-dir $( ls *.whl )[all]


RUN find $HOME -type d -exec chmod go=u {} + && \

0 comments on commit c6b63b2

Please sign in to comment.