@@ -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() }}
0 commit comments