File tree Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ jobs:
149
149
run : briefcase package ${{ matrix.briefcase-target }} --update --adhoc-sign
150
150
151
151
- name : Upload Logs
152
- uses : actions/upload-artifact@v4.3.4
152
+ uses : actions/upload-artifact@v4.4.0
153
153
if : failure()
154
154
with :
155
155
name : build-failure-logs-${{ matrix.backend }}-${{ matrix.python-version }}
Original file line number Diff line number Diff line change @@ -15,15 +15,15 @@ repos:
15
15
- id : isort
16
16
additional_dependencies : [toml]
17
17
- repo : https://github.com/asottile/pyupgrade
18
- rev : v3.16 .0
18
+ rev : v3.17 .0
19
19
hooks :
20
20
- id : pyupgrade
21
21
args : [--py38-plus]
22
22
- repo : https://github.com/psf/black-pre-commit-mirror
23
- rev : 24.4.2
23
+ rev : 24.8.0
24
24
hooks :
25
25
- id : black
26
26
- repo : https://github.com/PyCQA/flake8
27
- rev : 7.1.0
27
+ rev : 7.1.1
28
28
hooks :
29
29
- id : flake8
Original file line number Diff line number Diff line change 11
11
12
12
def xfail_if_not_installed (package_name ):
13
13
"""A test decorator that xfails a test if the named package isn't installed.
14
-
15
14
The third-party tests are dependant on packages being built. During pre-release some
16
15
packages won't be compilable. So - the pyproject.toml installs third party packages
17
- with a version conditional gate .
16
+ with some conditional gating .
18
17
19
18
This decorator checks for app metadata (which is an indicator that the package has
20
19
been installed). If the metadata exists, the test is executed; if it isn't we XFAIL
You can’t perform that action at this time.
0 commit comments