Skip to content

Commit 543ff03

Browse files
author
Roman
committed
bring back 3.13
1 parent 3feedf7 commit 543ff03

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/monitor_requirements_size_master.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,13 @@ jobs:
2525
runs-on: ubuntu-latest
2626
strategy:
2727
matrix:
28-
python-version: ["3.9", "3.10", "3.11", "3.12"]
28+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2929
outputs:
3030
py39: ${{ steps.set-output.outputs.py39 }}
3131
py310: ${{ steps.set-output.outputs.py310 }}
3232
py311: ${{ steps.set-output.outputs.py311 }}
3333
py312: ${{ steps.set-output.outputs.py312 }}
34+
py313: ${{ steps.set-output.outputs.py313 }}
3435

3536
steps:
3637
- uses: actions/checkout@v4
@@ -56,6 +57,7 @@ jobs:
5657
3.10) echo "py310=$SIZE" >> $GITHUB_OUTPUT ;;
5758
3.11) echo "py311=$SIZE" >> $GITHUB_OUTPUT ;;
5859
3.12) echo "py312=$SIZE" >> $GITHUB_OUTPUT ;;
60+
3.13) echo "py313=$SIZE" >> $GITHUB_OUTPUT ;;
5961
esac
6062
6163
comment-on-pr:
@@ -73,6 +75,7 @@ jobs:
7375
"3.10": "${{ needs.measure-venv.outputs.py310 || 'N/A' }}",
7476
"3.11": "${{ needs.measure-venv.outputs.py311 || 'N/A' }}",
7577
"3.12": "${{ needs.measure-venv.outputs.py312 || 'N/A' }}",
78+
"3.13": "${{ needs.measure-venv.outputs.py313 || 'N/A' }}",
7679
};
7780
7881
const body = [

0 commit comments

Comments
 (0)