File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change 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
+
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 ;;
56
55
esac
57
56
58
57
comment-on-pr :
69
68
"3.10": "${{ needs.measure-venv.outputs.py310 || 'N/A' }}",
70
69
"3.11": "${{ needs.measure-venv.outputs.py311 || 'N/A' }}",
71
70
"3.12": "${{ needs.measure-venv.outputs.py312 || 'N/A' }}",
72
- # "3.13": "${{ needs.measure-venv.outputs.py313 || 'N/A' }}"
73
71
};
74
72
const lines = Object.entries(sizes).map(([ver, size]) => `Python ${ver}: ${size} MB`);
75
73
const body = `Bittensor SDK virtual environment sizes by Python version:**\n\n\`\`\`\n${lines.join("\n")}\n\`\`\``;
You can’t perform that action at this time.
0 commit comments