Skip to content

Commit e5b9763

Browse files
authored
Merge pull request #64 from scipp/copier
ci: update copier
2 parents 458c265 + aa773c9 commit e5b9763

File tree

17 files changed

+44
-30
lines changed

17 files changed

+44
-30
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; NEVER EDIT MANUALLY
2-
_commit: 6848c57
2+
_commit: 101e594
33
_src_path: gh:scipp/copier_template
44
description: Reflectometry data reduction for the European Spallation Source
55
max_python: '3.12'

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ jobs:
4646
os-variant: ${{ matrix.os }}
4747
python-version: ${{ matrix.python.version }}
4848
tox-env: ${{ matrix.python.tox-env }}
49+
secrets: inherit
4950

5051
docs:
5152
needs: tests
@@ -54,3 +55,4 @@ jobs:
5455
publish: false
5556
linkcheck: ${{ contains(matrix.variant.os, 'ubuntu') && github.ref == 'refs/heads/main' }}
5657
branch: ${{ github.head_ref == '' && github.ref_name || github.head_ref }}
58+
secrets: inherit

.github/workflows/docs.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ jobs:
4242
docs:
4343
name: Build documentation
4444
runs-on: 'ubuntu-22.04'
45+
env:
46+
ESS_PROTECTED_FILESTORE_USERNAME: ${{ secrets.ESS_PROTECTED_FILESTORE_USERNAME }}
47+
ESS_PROTECTED_FILESTORE_PASSWORD: ${{ secrets.ESS_PROTECTED_FILESTORE_PASSWORD }}
48+
4549
steps:
4650
- run: sudo apt install --yes graphviz pandoc
4751
- uses: actions/checkout@v4
@@ -65,7 +69,7 @@ jobs:
6569
name: docs_html
6670
path: html/
6771

68-
- uses: JamesIves/[email protected].1
72+
- uses: JamesIves/[email protected].3
6973
if: ${{ inputs.publish }}
7074
with:
7175
branch: gh-pages

.github/workflows/nightly_at_main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,4 @@ jobs:
3131
os-variant: ${{ matrix.os }}
3232
python-version: ${{ matrix.python.version }}
3333
tox-env: ${{ matrix.python.tox-env }}
34+
secrets: inherit

.github/workflows/nightly_at_release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,4 @@ jobs:
3838
python-version: ${{ matrix.python.version }}
3939
tox-env: ${{ matrix.python.tox-env }}
4040
checkout_ref: ${{ needs.setup.outputs.release_tag }}
41+
secrets: inherit

.github/workflows/test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ on:
4343
jobs:
4444
test:
4545
runs-on: ${{ inputs.os-variant }}
46+
env:
47+
ESS_PROTECTED_FILESTORE_USERNAME: ${{ secrets.ESS_PROTECTED_FILESTORE_USERNAME }}
48+
ESS_PROTECTED_FILESTORE_PASSWORD: ${{ secrets.ESS_PROTECTED_FILESTORE_PASSWORD }}
4649

4750
steps:
4851
- uses: actions/checkout@v4

.github/workflows/unpinned.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,4 @@ jobs:
3838
python-version: ${{ matrix.python.version }}
3939
tox-env: ${{ matrix.python.tox-env }}
4040
checkout_ref: ${{ needs.setup.outputs.release_tag }}
41+
secrets: inherit

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ __pycache__/
2020
.pytest_cache
2121
.mypy_cache
2222
docs/generated/
23+
.ruff_cache
2324

2425
# Editor settings
2526
.idea/

requirements/base.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ cyclebane==24.6.0
2323
# via sciline
2424
cycler==0.12.1
2525
# via matplotlib
26-
dask==2024.7.0
26+
dask==2024.7.1
2727
# via -r base.in
2828
decorator==5.1.1
2929
# via ipython
30-
essreduce==24.6.0
30+
essreduce==24.7.1
3131
# via -r base.in
32-
exceptiongroup==1.2.1
32+
exceptiongroup==1.2.2
3333
# via ipython
3434
executing==2.0.1
3535
# via stack-data
@@ -73,7 +73,7 @@ mpltoolbox==24.5.1
7373
# via scippneutron
7474
networkx==3.3
7575
# via cyclebane
76-
numpy==2.0.0
76+
numpy==2.0.1
7777
# via
7878
# contourpy
7979
# h5py
@@ -84,7 +84,7 @@ numpy==2.0.0
8484
# scipp
8585
# scippneutron
8686
# scipy
87-
orsopy==1.2.0
87+
orsopy==1.2.1
8888
# via -r base.in
8989
packaging==24.1
9090
# via
@@ -111,7 +111,7 @@ prompt-toolkit==3.0.47
111111
# via ipython
112112
ptyprocess==0.7.0
113113
# via pexpect
114-
pure-eval==0.2.2
114+
pure-eval==0.2.3
115115
# via stack-data
116116
pygments==2.18.0
117117
# via ipython

requirements/basetest.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
#
66
# pip-compile-multi
77
#
8-
exceptiongroup==1.2.1
8+
exceptiongroup==1.2.2
99
# via pytest
1010
iniconfig==2.0.0
1111
# via pytest
1212
packaging==24.1
1313
# via pytest
1414
pluggy==1.5.0
1515
# via pytest
16-
pytest==8.2.2
16+
pytest==8.3.1
1717
# via -r basetest.in
1818
tomli==2.0.1
1919
# via pytest

0 commit comments

Comments
 (0)