Skip to content

Commit

Permalink
dev pip-compile: switch devel branch pip-compile to 3.11 (#1616)
Browse files Browse the repository at this point in the history
* dev pip-compile: switch devel branch pip-compile to 3.11

This adjusts the devel branch to use Python 3.11 to generate
dependencies with pip-compile. This also adjusts the pip-compile-dev
workflow to run separate jobs for the stable branches, which will still
use Python 3.10 for requirements files.

Fixes: #1614
Fixes: #1450

* ci pip-compile-docs.yml: wrap line with `>-`

Co-authored-by: Sviatoslav Sydorenko (Святослав Сидоренко) <[email protected]>

---------

Co-authored-by: Sviatoslav Sydorenko (Святослав Сидоренко) <[email protected]>
  • Loading branch information
gotmax23 and webknjaz authored Aug 20, 2024
1 parent b56cea3 commit e38e2c5
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 18 deletions.
59 changes: 44 additions & 15 deletions .github/workflows/pip-compile-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,6 @@ name: "Refresh dev dependencies"
- cron: "0 0 * * 0"
workflow_dispatch:
inputs:
base-branch:
required: false
type: string
pr-branch:
required: false
type: string
reset-branch:
type: boolean
default: false
Expand All @@ -28,18 +22,53 @@ name: "Refresh dev dependencies"

jobs:
refresh:
strategy:
fail-fast: false
matrix:
include:
- base-branch: devel
pr-branch: pip-compile/devel/dev
nox-args: >-
-e 'pip-compile-3.11(formatters)'
'pip-compile-3.11(typing)'
'pip-compile-3.11(static)'
'pip-compile-3.11(spelling)'
'pip-compile-3.11(tag)'
- base-branch: stable-2.17
pr-branch: pip-compile/stable-2.17/dev
nox-args: >-
-e 'pip-compile-3.10(formatters)'
'pip-compile-3.10(typing)'
'pip-compile-3.10(static)'
'pip-compile-3.10(spelling)'
- base-branch: stable-2.16
pr-branch: pip-compile/stable-2.16/dev
nox-args: >-
-e 'pip-compile-3.10(formatters)'
'pip-compile-3.10(typing)'
'pip-compile-3.10(static)'
'pip-compile-3.10(spelling)'
- base-branch: stable-2.15
pr-branch: pip-compile/stable-2.15/dev
nox-args: >-
-e 'pip-compile-3.10(formatters)'
'pip-compile-3.10(typing)'
'pip-compile-3.10(static)'
'pip-compile-3.10(spelling)'
- base-branch: stable-2.14
pr-branch: pip-compile/stable-2.14/dev
nox-args: >-
-e 'pip-compile-3.10(formatters)'
'pip-compile-3.10(typing)'
'pip-compile-3.10(static)'
'pip-compile-3.10(spelling)'
name: "Refresh dev dependencies"
uses: ./.github/workflows/reusable-pip-compile.yml
with:
message: "ci: refresh dev dependencies"
base-branch: "${{ inputs.base-branch || 'devel' }}"
pr-branch: "${{ inputs.pr-branch || 'pip-compile/devel/dev' }}"
nox-args: >-
-e 'pip-compile-3.10(formatters)'
'pip-compile-3.10(typing)'
'pip-compile-3.10(static)'
'pip-compile-3.10(spelling)'
'pip-compile-3.10(tag)'
base-branch: "${{ matrix.base-branch }}"
pr-branch: "${{ matrix.pr-branch }}"
nox-args: "${{ matrix.nox-args }}"
reset-branch: "${{ inputs.reset-branch || false }}"
labels: "${{ inputs.labels || 'backport-2.14,backport-2.15,backport-2.16,backport-2.17,tooling' }}"
labels: "${{ inputs.labels || 'no_backport,tooling' }}"
secrets: inherit
5 changes: 4 additions & 1 deletion .github/workflows/pip-compile-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ jobs:
message: "ci: refresh docs build dependencies"
base-branch: "${{ inputs.base-branch || 'devel' }}"
pr-branch: "${{ inputs.pr-branch || 'pip-compile/devel/docs' }}"
nox-args: "-e 'pip-compile-3.10(requirements)' 'pip-compile-3.10(requirements-relaxed)'"
nox-args: >-
-e
'pip-compile-3.11(requirements)'
'pip-compile-3.11(requirements-relaxed)'
reset-branch: "${{ inputs.reset-branch || false }}"
labels: "${{ inputs.labels || 'doc builds,no_backport' }}"
secrets: inherit
3 changes: 2 additions & 1 deletion .github/workflows/reusable-pip-compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ jobs:
base_branch: "${{ inputs.base-branch }}"
pr_branch: "${{ inputs.pr-branch }}"
message: "${{ inputs.message }}"
pr_title: "[${{ inputs.base-branch }}] ${{ inputs.message }}"
changed_files: "${{ inputs.changed-files }}"
labels: "${{ inputs.labels }}"
run: |
Expand All @@ -105,7 +106,7 @@ jobs:
then
command=(gh pr create
--base "${base_branch}"
--title "${message}"
--title "${pr_title}"
--body ""
--label dependency_update
)
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def lint(session: nox.Session):
)


@nox.session(name="pip-compile", python=["3.10"])
@nox.session(name="pip-compile", python=["3.11"])
@nox.parametrize(["req"], requirements_files, requirements_files)
def pip_compile(session: nox.Session, req: str):
# .pip-tools.toml was introduced in v7
Expand Down

0 comments on commit e38e2c5

Please sign in to comment.