Skip to content
Open
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
24 changes: 12 additions & 12 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
with:
# Initialize Ruff submodule
submodules: recursive
- uses: actions/setup-python@v6
- uses: actions/setup-python@v7
with:
python-version: "3.14"
- name: Build wheels
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
with:
# Initialize Ruff submodule
submodules: recursive
- uses: actions/setup-python@v6
- uses: actions/setup-python@v7
with:
python-version: "3.14"
- name: Build wheels
Expand Down Expand Up @@ -109,27 +109,27 @@ jobs:
# See https://github.com/django-components/djc-core/issues/22
# And https://pypi.org/project/djc-core-html-parser/1.0.3/#files
- name: Setup Python 3.10
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.10"
architecture: ${{ matrix.platform.target }}
- name: Setup Python 3.11
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.11"
architecture: ${{ matrix.platform.target }}
- name: Setup Python 3.12
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.12"
architecture: ${{ matrix.platform.target }}
- name: Setup Python 3.13
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.13"
architecture: ${{ matrix.platform.target }}
- name: Setup Python 3.14
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.14"
architecture: ${{ matrix.platform.target }}
Expand Down Expand Up @@ -165,23 +165,23 @@ jobs:
# See https://github.com/django-components/djc-core/issues/22
# And https://pypi.org/project/djc-core/1.1.0/#files
- name: Setup Python 3.10
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.10"
- name: Setup Python 3.11
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.11"
- name: Setup Python 3.12
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.12"
- name: Setup Python 3.13
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.13"
- name: Setup Python 3.14
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.14"
- name: Build wheels
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:

# After Rust tests pass, run Python tests next
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}

Expand Down