Skip to content

Commit b78c3c1

Browse files
author
Roman
committed
no py 3.13 for test (faster)
1 parent 48192d5 commit b78c3c1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/monitor_requirements_size_master.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ jobs:
2121
runs-on: ubuntu-latest
2222
strategy:
2323
matrix:
24-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
24+
python-version: ["3.9", "3.10", "3.11", "3.12"]
2525
outputs:
2626
py39: ${{ steps.set-output.outputs.py39 }}
2727
py310: ${{ steps.set-output.outputs.py310 }}
2828
py311: ${{ steps.set-output.outputs.py311 }}
2929
py312: ${{ steps.set-output.outputs.py312 }}
30-
py313: ${{ steps.set-output.outputs.py313 }}
30+
# py313: ${{ steps.set-output.outputs.py313 }}
3131
steps:
3232
- uses: actions/checkout@v4
3333
- uses: actions/setup-python@v5
@@ -52,7 +52,7 @@ jobs:
5252
3.10) echo "py310=$SIZE" >> $GITHUB_OUTPUT ;;
5353
3.11) echo "py311=$SIZE" >> $GITHUB_OUTPUT ;;
5454
3.12) echo "py312=$SIZE" >> $GITHUB_OUTPUT ;;
55-
3.13) echo "py313=$SIZE" >> $GITHUB_OUTPUT ;;
55+
# 3.13) echo "py313=$SIZE" >> $GITHUB_OUTPUT ;;
5656
esac
5757

5858
comment-on-pr:
@@ -69,7 +69,7 @@ jobs:
6969
"3.10": "${{ needs.measure-venv.outputs.py310 || 'N/A' }}",
7070
"3.11": "${{ needs.measure-venv.outputs.py311 || 'N/A' }}",
7171
"3.12": "${{ needs.measure-venv.outputs.py312 || 'N/A' }}",
72-
"3.13": "${{ needs.measure-venv.outputs.py313 || 'N/A' }}"
72+
# "3.13": "${{ needs.measure-venv.outputs.py313 || 'N/A' }}"
7373
};
7474
const lines = Object.entries(sizes).map(([ver, size]) => `Python ${ver}: ${size} MB`);
7575
const body = `Bittensor SDK virtual environment sizes by Python version:**\n\n\`\`\`\n${lines.join("\n")}\n\`\`\``;

0 commit comments

Comments
 (0)