Merge lp:~jelmer/brz/action-versions into lp:brz/3.3

Proposed by Jelmer Vernooij
Status: Merged
Approved by: Jelmer Vernooij
Approved revision: 7814
Merged at revision: 7815
Proposed branch: lp:~jelmer/brz/action-versions
Merge into: lp:brz/3.3
Diff against target: 39 lines (+5/-5)
2 files modified
.github/workflows/pythonpackage.yml (+3/-3)
.github/workflows/wheels.yaml (+2/-2)
To merge this branch: bzr merge lp:~jelmer/brz/action-versions
Reviewer Review Type Date Requested Status
Jelmer Vernooij Approve
Review via email: mp+452491@code.launchpad.net

Commit message

Bump github action versions

Description of the change

Bump github action versions

To post a comment you must log in.
Revision history for this message
Jelmer Vernooij (jelmer) :
review: Approve
Revision history for this message
The Breezy Bot (the-breezy-bot) wrote :

No approved revision specified.

Revision history for this message
The Breezy Bot (the-breezy-bot) wrote :
Download full text (158.7 KiB)

The attempt to merge lp:~jelmer/brz/action-versions into lp:brz/3.3 failed. Command exited with 2.
Below is the output from the failed tests.

Collecting setuptools-gettext
  Obtaining dependency information for setuptools-gettext from https://files.pythonhosted.org/packages/bc/b4/b159189f93027662db12f370bef2777ef54034af6bc01de44831c2b6fcc3/setuptools_gettext-0.1.7-py3-none-any.whl.metadata
  Downloading setuptools_gettext-0.1.7-py3-none-any.whl.metadata (1.5 kB)
Requirement already satisfied: setuptools>=46.1 in ./lib/python3.11/site-packages (from setuptools-gettext) (68.1.2)
Downloading setuptools_gettext-0.1.7-py3-none-any.whl (5.5 kB)
Installing collected packages: setuptools-gettext
Successfully installed setuptools-gettext-0.1.7
Obtaining file:///tmp/tarmac/branch._3qkav_z
  Installing build dependencies: started
  Installing build dependencies: finished with status 'done'
  Checking if build backend supports build_editable: started
  Checking if build backend supports build_editable: finished with status 'done'
  Getting requirements to build editable: started
  Getting requirements to build editable: finished with status 'done'
  Installing backend dependencies: started
  Installing backend dependencies: finished with status 'done'
  Preparing editable metadata (pyproject.toml): started
  Preparing editable metadata (pyproject.toml): finished with status 'done'
Requirement already satisfied: configobj in /usr/lib/python3/dist-packages (from breezy==3.3.5.dev0) (5.0.8)
Requirement already satisfied: fastbencode in /usr/lib/python3/dist-packages (from breezy==3.3.5.dev0) (0.2)
Requirement already satisfied: patiencediff in /usr/lib/python3/dist-packages (from breezy==3.3.5.dev0) (0.2.13)
Requirement already satisfied: merge3 in /usr/lib/python3/dist-packages (from breezy==3.3.5.dev0) (0.0.8)
Collecting dulwich>=0.21.6 (from breezy==3.3.5.dev0)
  Obtaining dependency information for dulwich>=0.21.6 from https://files.pythonhosted.org/packages/d5/6d/b2a3ddaf1dce030237e135de9de9116569659862b664696dd48fa5a2d26d/dulwich-0.21.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata
  Downloading dulwich-0.21.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.3 kB)
Requirement already satisfied: urllib3>=1.24.1 in /usr/lib/python3/dist-packages (from breezy==3.3.5.dev0) (1.26.12)
Requirement already satisfied: pyyaml in /usr/lib/python3/dist-packages (from breezy==3.3.5.dev0) (6.0)
Collecting testtools (from breezy==3.3.5.dev0)
  Downloading testtools-2.6.0-py3-none-any.whl (182 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 182.2/182.2 kB 6.9 MB/s eta 0:00:00
Collecting testscenarios (from breezy==3.3.5.dev0)
  Downloading testscenarios-0.5.0-py2.py3-none-any.whl (21 kB)
Collecting python-subunit (from breezy==3.3.5.dev0)
  Obtaining dependency information for python-subunit from https://files.pythonhosted.org/packages/54/6a/e98ee731948fbe5a5f79d51fa71d10947758371b6d3269db9993173d59f2/python_subunit-1.4.3-py3-none-any.whl.metadata
  Downloading python_subunit-1.4.3-py3-none-any.whl.metadata (22 kB)
Requirement already satisfied: flake8 in /usr/lib/python3/dist-packages (from breezy==3.3.5.dev0) (5.0.4)
Co...

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file '.github/workflows/pythonpackage.yml'
2--- .github/workflows/pythonpackage.yml 2022-11-22 20:17:56 +0000
3+++ .github/workflows/pythonpackage.yml 2023-09-30 11:07:17 +0000
4@@ -10,7 +10,7 @@
5 strategy:
6 matrix:
7 os: [ubuntu-latest]
8- python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
9+ python-version: [3.7, 3.8, 3.9, "3.10", "3.11", '3.12']
10 experimental: [false]
11 include:
12 - os: macos-latest
13@@ -27,9 +27,9 @@
14 fail-fast: false
15
16 steps:
17- - uses: actions/checkout@v2
18+ - uses: actions/checkout@v4
19 - name: Set up Python ${{ matrix.python-version }}
20- uses: actions/setup-python@v2
21+ uses: actions/setup-python@v4
22 with:
23 python-version: ${{ matrix.python-version }}
24 - name: Install dependencies (apt)
25
26=== modified file '.github/workflows/wheels.yaml'
27--- .github/workflows/wheels.yaml 2022-11-22 20:17:56 +0000
28+++ .github/workflows/wheels.yaml 2023-09-30 11:07:17 +0000
29@@ -15,8 +15,8 @@
30 fail-fast: true
31
32 steps:
33- - uses: actions/checkout@v3
34- - uses: actions/setup-python@v3
35+ - uses: actions/checkout@v4
36+ - uses: actions/setup-python@v4
37 - name: Install native dependencies (Ubuntu)
38 run: sudo apt-get update && sudo apt-get install -y libgpgme-dev
39 if: "matrix.os == 'ubuntu-latest'"

Subscribers

People subscribed via source and target branches