Skip to content

Commit 5dd6efa

Browse files
authored
Merge branch 'master' into ivana/declare-3.13-support
2 parents b2ec3e7 + c110ff3 commit 5dd6efa

Some content is hidden

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

57 files changed

+2233
-537
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
timeout-minutes: 10
2525

2626
steps:
27-
- uses: actions/checkout@v4.1.7
27+
- uses: actions/checkout@v4.2.0
2828
- uses: actions/setup-python@v5
2929
with:
3030
python-version: 3.12
@@ -39,7 +39,7 @@ jobs:
3939
timeout-minutes: 10
4040

4141
steps:
42-
- uses: actions/checkout@v4.1.7
42+
- uses: actions/checkout@v4.2.0
4343
- uses: actions/setup-python@v5
4444
with:
4545
python-version: 3.12
@@ -54,7 +54,7 @@ jobs:
5454
timeout-minutes: 10
5555

5656
steps:
57-
- uses: actions/checkout@v4.1.7
57+
- uses: actions/checkout@v4.2.0
5858
- uses: actions/setup-python@v5
5959
with:
6060
python-version: 3.12
@@ -85,7 +85,7 @@ jobs:
8585
timeout-minutes: 10
8686

8787
steps:
88-
- uses: actions/checkout@v4.1.7
88+
- uses: actions/checkout@v4.2.0
8989
- uses: actions/setup-python@v5
9090
with:
9191
python-version: 3.12

.github/workflows/codeql-analysis.yml

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

4747
steps:
4848
- name: Checkout repository
49-
uses: actions/checkout@v4.1.7
49+
uses: actions/checkout@v4.2.0
5050

5151
# Initializes the CodeQL tools for scanning.
5252
- name: Initialize CodeQL

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
name: "Release a new version"
2020
steps:
21-
- uses: actions/checkout@v4.1.7
21+
- uses: actions/checkout@v4.2.0
2222
with:
2323
token: ${{ secrets.GH_RELEASE_PAT }}
2424
fetch-depth: 0

.github/workflows/test-integrations-ai.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ jobs:
2727
strategy:
2828
fail-fast: false
2929
matrix:
30-
python-version: ["3.7","3.9","3.11","3.12"]
30+
python-version: ["3.7","3.9","3.11","3.12","3.13"]
3131
# python3.6 reached EOL and is no longer being supported on
3232
# new versions of hosted runners on Github Actions
3333
# ubuntu-20.04 is the last version that supported python3.6
3434
# see https://github.com/actions/setup-python/issues/544#issuecomment-1332535877
3535
os: [ubuntu-20.04]
3636
steps:
37-
- uses: actions/checkout@v4.1.7
37+
- uses: actions/checkout@v4.2.0
3838
- uses: actions/setup-python@v5
3939
with:
4040
python-version: ${{ matrix.python-version }}
@@ -66,24 +66,24 @@ jobs:
6666
set -x # print commands that are executed
6767
./scripts/runtox.sh "py${{ matrix.python-version }}-huggingface_hub-latest"
6868
- name: Generate coverage XML (Python 3.6)
69-
if: ${{ !cancelled() && matrix.python-version == '3.6' }}
69+
if: ${{ !cancelled() && matrix.python-version == '3.6' }}
7070
run: |
7171
export COVERAGE_RCFILE=.coveragerc36
7272
coverage combine .coverage-sentry-*
7373
coverage xml --ignore-errors
7474
- name: Generate coverage XML
75-
if: ${{ !cancelled() && matrix.python-version != '3.6' }}
75+
if: ${{ !cancelled() && matrix.python-version != '3.6' }}
7676
run: |
7777
coverage combine .coverage-sentry-*
7878
coverage xml
7979
- name: Upload coverage to Codecov
8080
if: ${{ !cancelled() }}
81-
uses: codecov/codecov-action@v4.5.0
81+
uses: codecov/codecov-action@v4.6.0
8282
with:
8383
token: ${{ secrets.CODECOV_TOKEN }}
8484
files: coverage.xml
8585
# make sure no plugins alter our coverage reports
86-
plugin: noop
86+
plugin: noop
8787
verbose: true
8888
- name: Upload test results to Codecov
8989
if: ${{ !cancelled() }}
@@ -99,14 +99,14 @@ jobs:
9999
strategy:
100100
fail-fast: false
101101
matrix:
102-
python-version: ["3.7","3.9","3.11","3.12"]
102+
python-version: ["3.7","3.9","3.11","3.12","3.13"]
103103
# python3.6 reached EOL and is no longer being supported on
104104
# new versions of hosted runners on Github Actions
105105
# ubuntu-20.04 is the last version that supported python3.6
106106
# see https://github.com/actions/setup-python/issues/544#issuecomment-1332535877
107107
os: [ubuntu-20.04]
108108
steps:
109-
- uses: actions/checkout@v4.1.7
109+
- uses: actions/checkout@v4.2.0
110110
- uses: actions/setup-python@v5
111111
with:
112112
python-version: ${{ matrix.python-version }}
@@ -138,24 +138,24 @@ jobs:
138138
set -x # print commands that are executed
139139
./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-huggingface_hub"
140140
- name: Generate coverage XML (Python 3.6)
141-
if: ${{ !cancelled() && matrix.python-version == '3.6' }}
141+
if: ${{ !cancelled() && matrix.python-version == '3.6' }}
142142
run: |
143143
export COVERAGE_RCFILE=.coveragerc36
144144
coverage combine .coverage-sentry-*
145145
coverage xml --ignore-errors
146146
- name: Generate coverage XML
147-
if: ${{ !cancelled() && matrix.python-version != '3.6' }}
147+
if: ${{ !cancelled() && matrix.python-version != '3.6' }}
148148
run: |
149149
coverage combine .coverage-sentry-*
150150
coverage xml
151151
- name: Upload coverage to Codecov
152152
if: ${{ !cancelled() }}
153-
uses: codecov/codecov-action@v4.5.0
153+
uses: codecov/codecov-action@v4.6.0
154154
with:
155155
token: ${{ secrets.CODECOV_TOKEN }}
156156
files: coverage.xml
157157
# make sure no plugins alter our coverage reports
158-
plugin: noop
158+
plugin: noop
159159
verbose: true
160160
- name: Upload test results to Codecov
161161
if: ${{ !cancelled() }}

.github/workflows/test-integrations-aws-lambda.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
name: permissions check
3333
runs-on: ubuntu-20.04
3434
steps:
35-
- uses: actions/checkout@v4.1.7
35+
- uses: actions/checkout@v4.2.0
3636
with:
3737
persist-credentials: false
3838
- name: Check permissions on PR
@@ -67,7 +67,7 @@ jobs:
6767
os: [ubuntu-20.04]
6868
needs: check-permissions
6969
steps:
70-
- uses: actions/checkout@v4.1.7
70+
- uses: actions/checkout@v4.2.0
7171
with:
7272
ref: ${{ github.event.pull_request.head.sha || github.ref }}
7373
- uses: actions/setup-python@v5
@@ -85,24 +85,24 @@ jobs:
8585
set -x # print commands that are executed
8686
./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-aws_lambda"
8787
- name: Generate coverage XML (Python 3.6)
88-
if: ${{ !cancelled() && matrix.python-version == '3.6' }}
88+
if: ${{ !cancelled() && matrix.python-version == '3.6' }}
8989
run: |
9090
export COVERAGE_RCFILE=.coveragerc36
9191
coverage combine .coverage-sentry-*
9292
coverage xml --ignore-errors
9393
- name: Generate coverage XML
94-
if: ${{ !cancelled() && matrix.python-version != '3.6' }}
94+
if: ${{ !cancelled() && matrix.python-version != '3.6' }}
9595
run: |
9696
coverage combine .coverage-sentry-*
9797
coverage xml
9898
- name: Upload coverage to Codecov
9999
if: ${{ !cancelled() }}
100-
uses: codecov/codecov-action@v4.5.0
100+
uses: codecov/codecov-action@v4.6.0
101101
with:
102102
token: ${{ secrets.CODECOV_TOKEN }}
103103
files: coverage.xml
104104
# make sure no plugins alter our coverage reports
105-
plugin: noop
105+
plugin: noop
106106
verbose: true
107107
- name: Upload test results to Codecov
108108
if: ${{ !cancelled() }}

.github/workflows/test-integrations-cloud-computing.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ jobs:
2727
strategy:
2828
fail-fast: false
2929
matrix:
30-
python-version: ["3.8","3.11","3.12"]
30+
python-version: ["3.8","3.11","3.12","3.13"]
3131
# python3.6 reached EOL and is no longer being supported on
3232
# new versions of hosted runners on Github Actions
3333
# ubuntu-20.04 is the last version that supported python3.6
3434
# see https://github.com/actions/setup-python/issues/544#issuecomment-1332535877
3535
os: [ubuntu-20.04]
3636
steps:
37-
- uses: actions/checkout@v4.1.7
37+
- uses: actions/checkout@v4.2.0
3838
- uses: actions/setup-python@v5
3939
with:
4040
python-version: ${{ matrix.python-version }}
@@ -62,24 +62,24 @@ jobs:
6262
set -x # print commands that are executed
6363
./scripts/runtox.sh "py${{ matrix.python-version }}-gcp-latest"
6464
- name: Generate coverage XML (Python 3.6)
65-
if: ${{ !cancelled() && matrix.python-version == '3.6' }}
65+
if: ${{ !cancelled() && matrix.python-version == '3.6' }}
6666
run: |
6767
export COVERAGE_RCFILE=.coveragerc36
6868
coverage combine .coverage-sentry-*
6969
coverage xml --ignore-errors
7070
- name: Generate coverage XML
71-
if: ${{ !cancelled() && matrix.python-version != '3.6' }}
71+
if: ${{ !cancelled() && matrix.python-version != '3.6' }}
7272
run: |
7373
coverage combine .coverage-sentry-*
7474
coverage xml
7575
- name: Upload coverage to Codecov
7676
if: ${{ !cancelled() }}
77-
uses: codecov/codecov-action@v4.5.0
77+
uses: codecov/codecov-action@v4.6.0
7878
with:
7979
token: ${{ secrets.CODECOV_TOKEN }}
8080
files: coverage.xml
8181
# make sure no plugins alter our coverage reports
82-
plugin: noop
82+
plugin: noop
8383
verbose: true
8484
- name: Upload test results to Codecov
8585
if: ${{ !cancelled() }}
@@ -95,14 +95,14 @@ jobs:
9595
strategy:
9696
fail-fast: false
9797
matrix:
98-
python-version: ["3.6","3.7","3.9","3.11","3.12"]
98+
python-version: ["3.6","3.7","3.9","3.11","3.12","3.13"]
9999
# python3.6 reached EOL and is no longer being supported on
100100
# new versions of hosted runners on Github Actions
101101
# ubuntu-20.04 is the last version that supported python3.6
102102
# see https://github.com/actions/setup-python/issues/544#issuecomment-1332535877
103103
os: [ubuntu-20.04]
104104
steps:
105-
- uses: actions/checkout@v4.1.7
105+
- uses: actions/checkout@v4.2.0
106106
- uses: actions/setup-python@v5
107107
with:
108108
python-version: ${{ matrix.python-version }}
@@ -130,24 +130,24 @@ jobs:
130130
set -x # print commands that are executed
131131
./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-gcp"
132132
- name: Generate coverage XML (Python 3.6)
133-
if: ${{ !cancelled() && matrix.python-version == '3.6' }}
133+
if: ${{ !cancelled() && matrix.python-version == '3.6' }}
134134
run: |
135135
export COVERAGE_RCFILE=.coveragerc36
136136
coverage combine .coverage-sentry-*
137137
coverage xml --ignore-errors
138138
- name: Generate coverage XML
139-
if: ${{ !cancelled() && matrix.python-version != '3.6' }}
139+
if: ${{ !cancelled() && matrix.python-version != '3.6' }}
140140
run: |
141141
coverage combine .coverage-sentry-*
142142
coverage xml
143143
- name: Upload coverage to Codecov
144144
if: ${{ !cancelled() }}
145-
uses: codecov/codecov-action@v4.5.0
145+
uses: codecov/codecov-action@v4.6.0
146146
with:
147147
token: ${{ secrets.CODECOV_TOKEN }}
148148
files: coverage.xml
149149
# make sure no plugins alter our coverage reports
150-
plugin: noop
150+
plugin: noop
151151
verbose: true
152152
- name: Upload test results to Codecov
153153
if: ${{ !cancelled() }}

.github/workflows/test-integrations-common.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
# see https://github.com/actions/setup-python/issues/544#issuecomment-1332535877
3535
os: [ubuntu-20.04]
3636
steps:
37-
- uses: actions/checkout@v4.1.7
37+
- uses: actions/checkout@v4.2.0
3838
- uses: actions/setup-python@v5
3939
with:
4040
python-version: ${{ matrix.python-version }}
@@ -50,24 +50,24 @@ jobs:
5050
set -x # print commands that are executed
5151
./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-common"
5252
- name: Generate coverage XML (Python 3.6)
53-
if: ${{ !cancelled() && matrix.python-version == '3.6' }}
53+
if: ${{ !cancelled() && matrix.python-version == '3.6' }}
5454
run: |
5555
export COVERAGE_RCFILE=.coveragerc36
5656
coverage combine .coverage-sentry-*
5757
coverage xml --ignore-errors
5858
- name: Generate coverage XML
59-
if: ${{ !cancelled() && matrix.python-version != '3.6' }}
59+
if: ${{ !cancelled() && matrix.python-version != '3.6' }}
6060
run: |
6161
coverage combine .coverage-sentry-*
6262
coverage xml
6363
- name: Upload coverage to Codecov
6464
if: ${{ !cancelled() }}
65-
uses: codecov/codecov-action@v4.5.0
65+
uses: codecov/codecov-action@v4.6.0
6666
with:
6767
token: ${{ secrets.CODECOV_TOKEN }}
6868
files: coverage.xml
6969
# make sure no plugins alter our coverage reports
70-
plugin: noop
70+
plugin: noop
7171
verbose: true
7272
- name: Upload test results to Codecov
7373
if: ${{ !cancelled() }}

0 commit comments

Comments
 (0)