Skip to content

Commit ff06bde

Browse files
authored
Merge branch 'main' into ESA_euclid_EUCLIDMNGT-1430_versioning_param
2 parents f14ad83 + 1d86234 commit ff06bde

File tree

150 files changed

+9175
-6683
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

150 files changed

+9175
-6683
lines changed

.github/release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
changelog:
2+
exclude:
3+
authors:
4+
- dependabot
5+
- pre-commit-ci
6+
- dependabot[bot]

.github/workflows/ci_crontests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ jobs:
3636

3737
steps:
3838
- name: Checkout code
39-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
39+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
4040
with:
4141
fetch-depth: 0
4242
- name: Set up Python
43-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
43+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
4444
with:
4545
python-version: ${{ matrix.python }}
4646
- name: Install Python dependencies

.github/workflows/ci_devtests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,17 @@ jobs:
3838

3939
- name: Python 3.13
4040
os: ubuntu-latest
41-
python: '3.13-dev'
41+
python: '3.13'
4242
toxenv: py313-test
4343
toxargs: -v
4444

4545
steps:
4646
- name: Checkout code
47-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
47+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
4848
with:
4949
fetch-depth: 0
5050
- name: Set up Python
51-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
51+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
5252
with:
5353
python-version: ${{ matrix.python }}
5454
- name: Install Python dependencies
@@ -57,6 +57,6 @@ jobs:
5757
run: tox ${{ matrix.toxargs }} -e ${{ matrix.toxenv }} -- ${{ matrix.toxposargs }}
5858
- name: Upload coverage to codecov
5959
if: contains(matrix.toxenv,'-cov')
60-
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3
60+
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
6161
with:
6262
file: ./coverage.xml

.github/workflows/ci_online_crontests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ jobs:
3838

3939
steps:
4040
- name: Checkout code
41-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
41+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
4242
with:
4343
fetch-depth: 0
4444
- name: Set up Python
45-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
45+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
4646
with:
4747
python-version: ${{ matrix.python }}
4848
- name: Install Python dependencies

.github/workflows/ci_tests.yml

Lines changed: 8 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ jobs:
3838

3939
- name: oldest version for all dependencies
4040
os: ubuntu-latest
41-
python: "3.9"
42-
toxenv: py39-test-oldestdeps-alldeps
41+
python: "3.10"
42+
toxenv: py310-test-oldestdeps-alldeps
4343
toxargs: -v
4444

45-
- name: OSX, py310, all optional dependencies
45+
- name: OSX, py312, all optional dependencies
4646
os: macos-latest
47-
python: "3.10"
48-
toxenv: py310-test-alldeps
47+
python: "3.12"
48+
toxenv: py312-test-alldeps
4949
toxargs: -v
5050

5151
- name: Windows, py311, mandatory dependencies only
@@ -63,11 +63,11 @@ jobs:
6363

6464
steps:
6565
- name: Checkout code
66-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
66+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
6767
with:
6868
fetch-depth: 0
6969
- name: Set up Python
70-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
70+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
7171
with:
7272
python-version: ${{ matrix.python }}
7373
- name: Install Python dependencies
@@ -76,21 +76,6 @@ jobs:
7676
run: tox ${{ matrix.toxargs }} -e ${{ matrix.toxenv }} -- ${{ matrix.toxposargs }}
7777
- name: Upload coverage to codecov
7878
if: contains(matrix.toxenv,'-cov')
79-
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3
79+
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
8080
with:
8181
file: ./coverage.xml
82-
83-
egg_info:
84-
name: egg_info with Python 3.9
85-
runs-on: ubuntu-latest
86-
steps:
87-
- name: Checkout code
88-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
89-
with:
90-
fetch-depth: 0
91-
- name: Set up Python
92-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
93-
with:
94-
python-version: "3.9"
95-
- name: Run egg_info
96-
run: python setup.py egg_info

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
30+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
3131

3232
# Initializes the CodeQL tools for scanning.
3333
- name: Initialize CodeQL

.mailmap

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ Eric Koch <koch.eric.w@gmail.com>
3232
Erwan Pannier <erwan.pannier@centralesupelec.fr>
3333
Fran Raga <franka1986@gmail.com> <All4Gis@users.noreply.github.com>
3434
Fred Moolekamp <fred3public@gmail.com>
35+
Gregory Dubois-Felsmann <gpdf@ipac.caltech.edu>
3536
Hadrien Devillepoix <hadriendvpx@gmail.com>
3637
Hans Moritz Guenter <moritz.guenther@gmx.de>
3738
Henrik Norman <honke.norman@gmail.com> <Honke.norman@gmail.com>
@@ -67,6 +68,8 @@ Juanjo Bazán <jjbazan@gmail.com>
6768
Julien Milli <julien.milli@wanadoo.fr>
6869
Julien Woillez <jwoillez@eso.org> <jwoillez@gmail.com>
6970
Julien Woillez <jwoillez@eso.org> <jwoillez@gmail.org>
71+
Jure Zakrajšek <jure.zakrajsek2@gmail.com>
72+
Jure Zakrajšek <jure.zakrajsek2@gmail.com> <64775776+jurezakrajsek@users.noreply.github.com>
7073
Kathleen Kiker <kathleen@b612foundation.orgm> <72056544+KatKiker@users.noreply.github.com>
7174
Kelvin Lee <kin.long.kelvin.lee@gmail.com>
7275
Kyle Willett <willettk@gmail.com>
@@ -86,6 +89,8 @@ Michael St. Clair <mstclair@millionconcepts.com>
8689
Michael St. Clair <mstclair@millionconcepts.com> <64057573+m-stclair@users.noreply.github.com>
8790
Michele Costa <thenocturnalastrostudent@gmail.com>
8891
Miguel de Val-Borro <miguel.deval@gmail.com> <miguel@archlinux.net>
92+
Mitchell Stringfellow <mitchell.stringfellow@csiro.au>
93+
Natanael Cardoso <natanael_magalhaes@msn.com>
8994
Natalie Korzh <nkorzh@oberlin.edu> <nkorzh@longella2020.local.stsci.edu>
9095
Naveen Srinivasan <172697+naveensrinivasan@users.noreply.github.com>
9196
Nicholas Earl <contact@nicholasearl.me>
@@ -98,7 +103,9 @@ Raul Gutierrez <raul.gutierrez@sciops.esa.int> <Raul.Gutierrez@sciops.esa.int>
98103
Rounak Agarwal <rounakr.ag73@gmail.com>
99104
Sam Bianco <sbianco@stsci.edu> <70121323+snbianco@users.noreply.github.com>
100105
Sam Lee <orionlee@yahoo.com>
101-
Sashank Mishra <sashankmishra27@gmail.com>
106+
Sashank Mishra <sashankmishra27@gmail.com
107+
Simon Alinder <simon.alinder@astro.lu.se>
108+
Simon Alinder <simon.alinder@astro.lu.se> <92031780+AlinderS@users.noreply.github.com>
102109
Simon Conseil <contact@saimon.org> <sconseil@gemini.edu>
103110
Simon Conseil <contact@saimon.org> <simon.conseil@univ-lyon1.fr>
104111
Simon Liedtke <liedtke.simon@googlemail.com>
@@ -108,5 +115,6 @@ Syed Gilani <sgilani@dmdtemp2020.local.stsci.edu>
108115
Tinuade Adeleke <summittinuade@gmail.com>
109116
Tim Galvin <gal16b@csiro.au>
110117
Tomas Alonso Albi <tomas.alonsoalbi@esa.int>
118+
Tristan Dijkstra <tristan.dijkstra@gmail.com>
111119
Volodymyr Savchenko <contact@volodymyrsavchenko.com> <Volodymyr.Savchenko@unige.ch>
112120
Volodymyr Savchenko <contact@volodymyrsavchenko.com> <volodymyrss@users.noreply.github.com>

0 commit comments

Comments
 (0)