Skip to content

Commit 75b7124

Browse files
authored
Merge branch 'main' into ESA_gaia_GAIAMNGT-1700_load_data
2 parents 220b885 + ecb0ea0 commit 75b7124

File tree

126 files changed

+7683
-4734
lines changed

Some content is hidden

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

126 files changed

+7683
-4734
lines changed

.github/dependabot.yml

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
16
version: 2
27
updates:
3-
- package-ecosystem: pip
4-
directory: "/"
5-
schedule:
6-
interval: weekly
7-
open-pull-requests-limit: 10
8+
- package-ecosystem: "github-actions"
9+
directory: "/"
10+
schedule:
11+
interval: "monthly"
12+
groups:
13+
actions:
14+
patterns:
15+
- "*"
16+
labels:
17+
- "no-changelog-entry-needed"
18+
- "infrastructure"

.github/workflows/changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Check change log entry
17-
uses: scientific-python/action-check-changelogfile@064f2005176e1622e7c2bd9776140406609097d1
17+
uses: scientific-python/action-check-changelogfile@1fc669db9618167166d5a16c10282044f51805c0 # 0.3
1818
env:
1919
CHANGELOG_FILENAME: CHANGES.rst
2020
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/ci_crontests.yml

Lines changed: 7 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ on:
66
tags:
77
- '*'
88
schedule:
9-
# run every Friday at 23:00 UTC
10-
- cron: '0 23 * * 5'
9+
# run every Friday at 22:00 UTC
10+
- cron: '0 22 * * 5'
1111
workflow_dispatch:
1212

1313
permissions:
@@ -22,24 +22,10 @@ jobs:
2222
fail-fast: false
2323
matrix:
2424
include:
25-
- name: py3.11 all dev deps online
25+
- name: py3.12 pre-release all deps
2626
os: ubuntu-latest
27-
python: '3.11'
28-
toxenv: py311-test-alldeps-devdeps-online
29-
toxargs: -v
30-
toxposargs: -v --durations=50
31-
32-
- name: Windows py3.9 all deps online
33-
os: windows-latest
34-
python: '3.9'
35-
toxenv: py39-test-alldeps-online
36-
toxargs: -v
37-
toxposargs: -v --durations=50
38-
39-
- name: py3.11 pre-release all deps
40-
os: ubuntu-latest
41-
python: '3.11'
42-
toxenv: py311-test-alldeps-predeps
27+
python: '3.12'
28+
toxenv: py312-test-alldeps-predeps
4329
toxargs: -v
4430
toxposargs: -v
4531

@@ -50,11 +36,11 @@ jobs:
5036

5137
steps:
5238
- name: Checkout code
53-
uses: actions/checkout@v4
39+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
5440
with:
5541
fetch-depth: 0
5642
- name: Set up Python
57-
uses: actions/setup-python@v5
43+
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
5844
with:
5945
python-version: ${{ matrix.python }}
6046
- name: Install Python dependencies

.github/workflows/ci_devtests.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,19 @@ jobs:
3636
toxenv: py312-test-alldeps-devdeps-cov
3737
toxargs: -v
3838

39+
- name: Python 3.13
40+
os: ubuntu-latest
41+
python: '3.13-dev'
42+
toxenv: py313-test
43+
toxargs: -v
44+
3945
steps:
4046
- name: Checkout code
41-
uses: actions/checkout@v4
47+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
4248
with:
4349
fetch-depth: 0
4450
- name: Set up Python
45-
uses: actions/setup-python@v5
51+
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
4652
with:
4753
python-version: ${{ matrix.python }}
4854
- name: Install Python dependencies
@@ -51,6 +57,6 @@ jobs:
5157
run: tox ${{ matrix.toxargs }} -e ${{ matrix.toxenv }} -- ${{ matrix.toxposargs }}
5258
- name: Upload coverage to codecov
5359
if: contains(matrix.toxenv,'-cov')
54-
uses: codecov/codecov-action@v3
60+
uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4.5.0
5561
with:
5662
file: ./coverage.xml
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
name: CI-online-crontests
2+
3+
on:
4+
push:
5+
# Run this job on release tags, but not on pushes to the main branch
6+
tags:
7+
- '*'
8+
schedule:
9+
# run every Friday at 23:00 UTC
10+
- cron: '0 23 * * 5'
11+
workflow_dispatch:
12+
13+
permissions:
14+
contents: read
15+
16+
jobs:
17+
tests:
18+
name: ${{ matrix.name }}
19+
runs-on: ${{ matrix.os }}
20+
if: github.repository == 'astropy/astroquery'
21+
strategy:
22+
fail-fast: false
23+
matrix:
24+
include:
25+
- name: py3.12 all dev deps online
26+
os: ubuntu-latest
27+
python: '3.12'
28+
toxenv: py312-test-alldeps-devdeps-online
29+
toxargs: -v
30+
toxposargs: -v --durations=50
31+
32+
- name: Windows py3.9 all deps online
33+
os: windows-latest
34+
python: '3.9'
35+
toxenv: py39-test-alldeps-online
36+
toxargs: -v
37+
toxposargs: -v --durations=50
38+
39+
steps:
40+
- name: Checkout code
41+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
42+
with:
43+
fetch-depth: 0
44+
- name: Set up Python
45+
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
46+
with:
47+
python-version: ${{ matrix.python }}
48+
- name: Install Python dependencies
49+
run: python -m pip install --upgrade tox
50+
- name: Run tests
51+
run: tox ${{ matrix.toxargs }} -e ${{ matrix.toxenv }} -- ${{ matrix.toxposargs }}

.github/workflows/ci_tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ jobs:
5656

5757
steps:
5858
- name: Checkout code
59-
uses: actions/checkout@v4
59+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
6060
with:
6161
fetch-depth: 0
6262
- name: Set up Python
63-
uses: actions/setup-python@v5
63+
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
6464
with:
6565
python-version: ${{ matrix.python }}
6666
- name: Install Python dependencies
@@ -69,7 +69,7 @@ jobs:
6969
run: tox ${{ matrix.toxargs }} -e ${{ matrix.toxenv }} -- ${{ matrix.toxposargs }}
7070
- name: Upload coverage to codecov
7171
if: contains(matrix.toxenv,'-cov')
72-
uses: codecov/codecov-action@v3
72+
uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4.5.0
7373
with:
7474
file: ./coverage.xml
7575

@@ -78,11 +78,11 @@ jobs:
7878
runs-on: ubuntu-latest
7979
steps:
8080
- name: Checkout code
81-
uses: actions/checkout@v4
81+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
8282
with:
8383
fetch-depth: 0
8484
- name: Set up Python
85-
uses: actions/setup-python@v5
85+
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
8686
with:
8787
python-version: "3.9"
8888
- name: Run egg_info

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ jobs:
2727

2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
3131

3232
# Initializes the CodeQL tools for scanning.
3333
- name: Initialize CodeQL
34-
uses: github/codeql-action/init@v2
34+
uses: github/codeql-action/init@5618c9fc1e675841ca52c1c6b1304f5255a905a0 # codeql-bundle-v2.19.0
3535
with:
3636
languages: ${{ matrix.language }}
3737
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -42,7 +42,7 @@ jobs:
4242
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
4343
# If this step fails, then you should remove it and run the build manually (see below)
4444
- name: Autobuild
45-
uses: github/codeql-action/autobuild@v2
45+
uses: github/codeql-action/autobuild@5618c9fc1e675841ca52c1c6b1304f5255a905a0 # codeql-bundle-v2.19.0
4646

4747
# ℹ️ Command-line programs to run using the OS shell.
4848
# 📚 https://git.io/JvXDl
@@ -56,4 +56,4 @@ jobs:
5656
# make release
5757

5858
- name: Perform CodeQL Analysis
59-
uses: github/codeql-action/analyze@v2
59+
uses: github/codeql-action/analyze@5618c9fc1e675841ca52c1c6b1304f5255a905a0 # codeql-bundle-v2.19.0

.github/workflows/milestone.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.

.mailmap

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ Adam Ginsburg <[email protected]> <[email protected]>
33
44
55
6+
Angel Ruiz <[email protected]>
7+
Antonio Ortega <[email protected]>
8+
69
710
811
Ayush Yadav <[email protected]>
@@ -16,19 +19,23 @@ Clara Brasseur <[email protected]>
1619
1720
1821
22+
Dino Bektesevic <[email protected]>
1923
E. Madison Bray <[email protected]>
2024
2125
Edward Gomez <[email protected]>
2226
Elena Colomo <[email protected]>
2327
Eric Koch <[email protected]>
2428
Erwan Pannier <[email protected]>
2529
26-
Fred Moolekamp <[email protected]>Magnus Persson <[email protected]> <[email protected]>
30+
Fred Moolekamp <[email protected]>
31+
Hadrien Devillepoix <[email protected]>
2732
Hans Moritz Guenter <[email protected]>
2833
2934
35+
3036
Jaladh Singhal <[email protected]>
3137
38+
James Guillochon <[email protected]>
3239
Javier Ballester <[email protected]>
3340
Javier Duran <[email protected]>
3441
@@ -43,33 +50,49 @@ Javier Espinosa <[email protected]> <[email protected]
4350
4451
4552
53+
4654
Jennifer Medina <[email protected]>
4755
Jesus Juan Salgado <[email protected]>
56+
Jon Juaristi Campillo <[email protected]>
4857
Jonathan Gagne <[email protected]>
4958
59+
Jorge Fernandez Hernandez <[email protected]>
5060
Juan Carlos Segovia <[email protected]>
61+
Juanjo Bazán <[email protected]>
62+
Julien Milli <[email protected]>
5163
5264
65+
5366
Kelvin Lee <[email protected]>
67+
Kyle Willett <[email protected]>
5468
Larry Bradley <[email protected]>
5569
5670
Luis Valero Martín <[email protected]>
5771
Madhura Parikh <[email protected]>
5872
Magnus Persson <[email protected]>
5973
74+
Manon Marchand <[email protected]>
6075
Maria H. Sarmiento <[email protected]>
6176
Matthew Craig <[email protected]>
6277
6378
79+
80+
Michael St. Clair <[email protected]>
81+
6482
Michele Costa <[email protected]>
6583
Miguel de Val-Borro <[email protected]> <[email protected]>
6684
85+
Naveen Srinivasan <[email protected]>
6786
Nicholas Earl <[email protected]>
6887
Oliver Oberdorf <[email protected]>
6988
7089
90+
Prajwel Joseph <[email protected]>
7191
Raul Gutierrez <[email protected]> <Raul [email protected]>
7292
93+
Rounak Agarwal <[email protected]>
94+
95+
Sashank Mishra <[email protected]>
7396
7497
7598
Simon Liedtke <[email protected]>
@@ -78,5 +101,6 @@ Syed Gilani <[email protected]> <[email protected]>
78101
Syed Gilani <[email protected]>
79102
Tinuade Adeleke <[email protected]>
80103
Tim Galvin <[email protected]>
104+
Tomas Alonso Albi <[email protected]>
81105
Volodymyr Savchenko <[email protected]> <[email protected]>
82106
Volodymyr Savchenko <[email protected]> <[email protected]>

0 commit comments

Comments
 (0)