We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3b5be6 commit c6c2934Copy full SHA for c6c2934
.github/workflows/ci.yml
@@ -103,6 +103,8 @@ jobs:
103
python build_helpers/create_command_partials.py
104
105
- name: Check for repository changes
106
+ # TODO: python 3.13 slightly changed the output of argparse.
107
+ if: (matrix.python-version != '3.13')
108
run: |
109
if [ -n "$(git status --porcelain)" ]; then
110
echo "Repository is dirty, changes detected:"
@@ -158,6 +160,9 @@ jobs:
158
160
matrix:
159
161
os: [ "macos-13", "macos-14", "macos-15" ]
162
python-version: ["3.10", "3.11", "3.12", "3.13"]
163
+ exclude:
164
+ - os: macos-13
165
+ python-version: "3.13"
166
167
steps:
168
- uses: actions/checkout@v4
0 commit comments