Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ on:
description: 'Drake mac-arm-sequoia-*-packaging .tar.gz artifact URL'
required: false
linux_noble_wheel:
description: 'Drake linux-noble-*-wheel-*-release Python 3.10 artifact URL'
description: 'Drake linux-noble-*-wheel-*-release Python 3.12 artifact URL'
required: false
mac_arm_sequoia_wheel:
description: 'Drake mac-arm-sequoia-*-wheel-*-release Python 3.13 artifact URL'
description: 'Drake mac-arm-sequoia-*-wheel-*-release Python 3.14 artifact URL'
required: false
concurrency:
# Cancel previous CI runs when additional commits are added to a pull request.
Expand All @@ -53,7 +53,7 @@ jobs:
- name: setup
uses: actions/setup-python@v6
with:
python-version: '3.13'
python-version: '3.14'
- name: file_sync test
run: |
pip install ruamel.yaml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: macos sequoia 15 arm
runs-on: macos-15
env:
PYTHON_VERSION: '3.13'
PYTHON_VERSION: '3.14'
steps:
- name: checkout
uses: actions/checkout@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/poetry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: macos sequoia 15 arm
runs-on: macos-15
env:
PYTHON_VERSION: '3.13'
PYTHON_VERSION: '3.14'
steps:
- name: checkout
uses: actions/checkout@v5
Expand Down
6 changes: 3 additions & 3 deletions drake_pip/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ on:
workflow_dispatch:
inputs:
linux_noble_wheel:
description: 'Drake linux-noble-*-wheel-*-release Python 3.10 artifact URL'
description: 'Drake linux-noble-*-wheel-*-release Python 3.12 artifact URL'
required: false
mac_arm_sequoia_wheel:
description: 'Drake mac-arm-sequoia-*-wheel-*-release Python 3.13 artifact URL'
description: 'Drake mac-arm-sequoia-*-wheel-*-release Python 3.14 artifact URL'
required: false
concurrency:
# Cancel previous CI runs when additional commits are added to a pull request.
Expand All @@ -29,7 +29,7 @@ jobs:
name: macos sequoia 15 arm
runs-on: macos-15
env:
PYTHON_VERSION: '3.13'
PYTHON_VERSION: '3.14'
steps:
- name: checkout
uses: actions/checkout@v5
Expand Down
4 changes: 2 additions & 2 deletions drake_pip/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ setup/setup_env

*Note*: If you have multiple versions of Python installed,
you can specify the correct version as an optional argument
to the script. For example, to use `python3.13`, call:
to the script. For example, to use `python3.14`, call:

```bash
setup/setup_env --python-version 3.13
setup/setup_env --python-version 3.14
```

Refer to the
Expand Down
6 changes: 3 additions & 3 deletions drake_poetry/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ on:
workflow_dispatch:
inputs:
linux_noble_wheel:
description: 'Drake linux-noble-*-wheel-*-release Python 3.10 artifact URL'
description: 'Drake linux-noble-*-wheel-*-release Python 3.12 artifact URL'
required: false
mac_arm_sequoia_wheel:
description: 'Drake mac-arm-sequoia-*-wheel-*-release Python 3.13 artifact URL'
description: 'Drake mac-arm-sequoia-*-wheel-*-release Python 3.14 artifact URL'
required: false
concurrency:
# Cancel previous CI runs when additional commits are added to a pull request.
Expand All @@ -29,7 +29,7 @@ jobs:
name: macos sequoia 15 arm
runs-on: macos-15
env:
PYTHON_VERSION: '3.13'
PYTHON_VERSION: '3.14'
steps:
- name: checkout
uses: actions/checkout@v5
Expand Down
4 changes: 2 additions & 2 deletions drake_poetry/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ setup/install_prereqs

*Note*: If you have multiple versions of Python installed,
you can specify the correct version as an optional argument
to the script. For example, to use `python3.13`, call:
to the script. For example, to use `python3.14`, call:

```bash
setup/setup_env --python-version 3.13
setup/setup_env --python-version 3.14
```

Refer to the
Expand Down
Loading