Skip to content
Closed
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
16 changes: 9 additions & 7 deletions .github/workflows/feature_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up Python 3.11
- name: Set up Python 3.13
id: py
uses: actions/setup-python@v5
with:
python-version: 3.11
python-version: 3.13
- name: Set up uv
uses: SFDO-Tooling/setup-uv@v8.0.0-sfdo.1
with:
Expand All @@ -42,11 +42,12 @@ jobs:
unit_tests:
name: "Unit tests: ${{ matrix.os }}-${{ matrix.python-version }}"
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.python-version == '3.14' }}
strategy:
fail-fast: false
matrix:
os: [macos-latest, SFDO-Tooling-Ubuntu, SFDO-Tooling-Windows]
python-version: ["3.11", "3.12", "3.13"]
python-version: ["3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
Expand All @@ -66,11 +67,12 @@ jobs:
unit_tests_opt_deps:
name: "Unit tests with optional dependencies: ${{ matrix.os }}-${{ matrix.python-version }}"
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.python-version == '3.14' }}
strategy:
fail-fast: false
matrix:
os: [macos-latest, SFDO-Tooling-Ubuntu, SFDO-Tooling-Windows]
python-version: ["3.11", "3.12", "3.13"]
python-version: ["3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
Expand All @@ -92,17 +94,17 @@ jobs:
runs-on: SFDO-Tooling-Ubuntu
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: 3.11
python-version: 3.13
- name: Set up uv
uses: SFDO-Tooling/setup-uv@v8.0.0-sfdo.1
with:
version: "0.8.4"
enable-cache: true
- name: Install dependencies
run: uv sync -p 3.11
run: uv sync -p 3.13
- name: Install sfdx
run: |
mkdir sfdx
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
runs-on: SFDO-Tooling-Ubuntu
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: 3.11
python-version: 3.13
cache: pip
- name: Install build tool
run: python -m pip install hatch
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
runs-on: SFDO-Tooling-Ubuntu
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: 3.11
python-version: 3.13
cache: pip
- name: Install build tools
run: python -m pip install hatch tomli tomli-w
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
runs-on: SFDO-Tooling-Ubuntu
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: 3.11
python-version: 3.13
cache: pip
cache-dependency-path: "pyproject.toml"
- name: Install build tools
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release_test_sfdx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ jobs:
concurrency: release
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: 3.11
python-version: 3.13
- name: Set up uv
uses: SFDO-Tooling/setup-uv@v8.0.0-sfdo.1
with:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/slow_integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@ jobs:
runs-on: SFDO-Tooling-Ubuntu
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: 3.11
python-version: 3.13
- name: Set up uv
uses: SFDO-Tooling/setup-uv@v8.0.0-sfdo.1
with:
version: "0.8.4"
enable-cache: true
- name: Install dependencies
run: uv sync -p 3.11
run: uv sync -p 3.13
- name: Install Salesforce CLI
run: |
mkdir sfdx
Expand Down Expand Up @@ -74,17 +74,17 @@ jobs:
# org-shape: "prerelease"
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: 3.11
python-version: 3.13
- name: Set up uv
uses: SFDO-Tooling/setup-uv@v8.0.0-sfdo.1
with:
version: "0.8.4"
enable-cache: true
- name: Install Python dependencies
run: uv sync -p 3.11
run: uv sync -p 3.13
- name: Install Salesforce CLI
run: |
mkdir sfdx
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ jobs:
update_python_dependencies:
uses: SFDO-Tooling/.github/.github/workflows/update_python_dependencies.yml@main
with:
python-version: 3.11
python-version: 3.13
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "cumulusci"
dynamic = ["readme", "version"]
description = "Build and release tools for Salesforce developers"
license = { text = "BSD 3-Clause License" }
requires-python = ">=3.11"
requires-python = ">=3.11,<3.14"
authors = [
{ name = "Salesforce.org", email = "sfdo-mrbelvedere@salesforce.com" },
]
Expand Down
Loading