Skip to content

Commit f26a314

Browse files
committed
move file
1 parent e0eeebd commit f26a314

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.copier-answers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier
2-
_commit: v0.0.7-41-ge3d7a12
2+
_commit: v0.0.7-43-g83c9863
33
_src_path: gh:LabAutomationAndScreening/copier-base-template.git
44
description: Copier template for creating Python libraries and executables
55
python_ci_versions:

.github/workflows/ci.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ jobs:
5757
lint-matrix:
5858
needs: [ pre-commit ]
5959
strategy:
60-
fail-fast: false
6160
matrix:
6261
os:
6362
- "ubuntu-24.04"
@@ -78,6 +77,10 @@ jobs:
7877
- name: Checkout code
7978
uses: actions/checkout@v4.2.2
8079

80+
- name: Move python script that replaces private package registry information to temp folder so it doesn't get deleted
81+
run: |
82+
mv .github/workflows/replace_private_package_registries.py $RUNNER_TEMP
83+
8184
- name: Install python tooling
8285
uses: ./.github/actions/install_deps_uv
8386
with:
@@ -113,8 +116,7 @@ jobs:
113116
UV_NO_CACHE: 'true'
114117
run: |
115118
# Remove any specification of a Python repository having a default other than PyPI...because in this CI pipeline we can only install from PyPI
116-
python .github/workflows/replace_private_package_registries.py
117-
cat pyproject.toml
119+
python $RUNNER_TEMP/replace_private_package_registries.py
118120
sh .devcontainer/manual-setup-deps.sh ${{ matrix.python-version }} --skip-lock
119121
# Add everything to git so that pre-commit recognizes the files and runs on them
120122
git add .

0 commit comments

Comments
 (0)