@@ -21,13 +21,13 @@ jobs:
21
21
runs-on : ubuntu-latest
22
22
strategy :
23
23
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"]
25
25
outputs :
26
26
py39 : ${{ steps.set-output.outputs.py39 }}
27
27
py310 : ${{ steps.set-output.outputs.py310 }}
28
28
py311 : ${{ steps.set-output.outputs.py311 }}
29
29
py312 : ${{ steps.set-output.outputs.py312 }}
30
- py313 : ${{ steps.set-output.outputs.py313 }}
30
+ # py313: ${{ steps.set-output.outputs.py313 }}
31
31
steps :
32
32
- uses : actions/checkout@v4
33
33
- uses : actions/setup-python@v5
52
52
3.10) echo "py310=$SIZE" >> $GITHUB_OUTPUT ;;
53
53
3.11) echo "py311=$SIZE" >> $GITHUB_OUTPUT ;;
54
54
3.12) echo "py312=$SIZE" >> $GITHUB_OUTPUT ;;
55
- 3.13) echo "py313=$SIZE" >> $GITHUB_OUTPUT ;;
55
+ # 3.13) echo "py313=$SIZE" >> $GITHUB_OUTPUT ;;
56
56
esac
57
57
58
58
comment-on-pr :
69
69
"3.10": "${{ needs.measure-venv.outputs.py310 || 'N/A' }}",
70
70
"3.11": "${{ needs.measure-venv.outputs.py311 || 'N/A' }}",
71
71
"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' }}"
73
73
};
74
74
const lines = Object.entries(sizes).map(([ver, size]) => `Python ${ver} : ${size} MB`);
75
75
const body = `Bittensor SDK virtual environment sizes by Python version:**\n\n\`\`\`\n${lines.join("\n")}\n\`\`\``;
0 commit comments