Skip to content

Commit c0efdc8

Browse files
committed
chore(master): merge maint-0.9 (#766)
chore(maint-0.9): release 0.9.6 fix(cli): suppress pkg_resources deprecation warning (#764) chore(maint-0.9): release 0.9.5 ci(python): run all matrix jobs without fast failing (#763) build(docker): add build deps for jq and lxml (#763) build(python): pin setuptools below 81 (#763) Note: keeping only changes meaningful to the master branch, such as `reana-client` warning suppression, the slow failing of CI matrix jobs, and CHANGELOG changes of the maintenance branch releases.
2 parents da63802 + 1a64395 commit c0efdc8

5 files changed

Lines changed: 37 additions & 10 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.9.4"
2+
".": "0.9.6"
33
}

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@
33

44
# Changelog
55

6+
## [0.9.6](https://github.com/reanahub/reana-client/compare/0.9.5...0.9.6) (2026-03-25)
7+
8+
9+
### Bug fixes
10+
11+
* **cli:** suppress pkg_resources deprecation warning ([#764](https://github.com/reanahub/reana-client/issues/764)) ([69105b7](https://github.com/reanahub/reana-client/commit/69105b7b5046450659b8aaeb77e4b28d7ddd1293))
12+
13+
## [0.9.5](https://github.com/reanahub/reana-client/compare/0.9.4...0.9.5) (2026-03-24)
14+
15+
16+
### Build
17+
18+
* **docker:** add build deps for jq and lxml ([#763](https://github.com/reanahub/reana-client/issues/763)) ([9a04527](https://github.com/reanahub/reana-client/commit/9a04527aa15ca38c66cc24e118832cb433f654c4))
19+
* **python:** pin setuptools below 81 ([#763](https://github.com/reanahub/reana-client/issues/763)) ([7d35fa0](https://github.com/reanahub/reana-client/commit/7d35fa0b55bde963fb9300feb40d4b94e4f5e369)), closes [#761](https://github.com/reanahub/reana-client/issues/761)
20+
21+
22+
### Continuous integration
23+
24+
* **python:** run all matrix jobs without fast failing ([#763](https://github.com/reanahub/reana-client/issues/763)) ([8e79aaa](https://github.com/reanahub/reana-client/commit/8e79aaa686b19a1776ee88cd7b0bad36da8adf35))
25+
* **runners:** upgrade CI runners to Ubuntu 22.04 ([#741](https://github.com/reanahub/reana-client/issues/741)) ([639992a](https://github.com/reanahub/reana-client/commit/639992a3c13a3b601541f0a04c48afd33008ac62))
26+
627
## [0.9.4](https://github.com/reanahub/reana-client/compare/0.9.3...0.9.4) (2024-11-29)
728

829
### Build

docs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file is part of REANA.
2-
# Copyright (C) 2018 CERN.
2+
# Copyright (C) 2018, 2026 CERN.
33
#
44
# REANA is free software; you can redistribute it and/or modify it
55
# under the terms of the MIT License; see LICENSE file for more details.

reana_client/cli/__init__.py

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,18 @@
77
# under the terms of the MIT License; see LICENSE file for more details.
88
"""REANA command line interface client."""
99

10-
import logging
11-
import os
12-
import sys
10+
import warnings
1311

14-
import click
15-
from reana_client.cli import (
12+
warnings.filterwarnings(
13+
"ignore", message="pkg_resources is deprecated", module="yadageschemas"
14+
)
15+
16+
import logging # noqa: E402
17+
import os # noqa: E402
18+
import sys # noqa: E402
19+
20+
import click # noqa: E402
21+
from reana_client.cli import ( # noqa: E402
1622
files,
1723
ping,
1824
quotas,
@@ -21,8 +27,8 @@
2127
test,
2228
workflow,
2329
)
24-
from reana_client.utils import get_api_url
25-
from urllib3 import disable_warnings
30+
from reana_client.utils import get_api_url # noqa: E402
31+
from urllib3 import disable_warnings # noqa: E402
2632

2733
DEBUG_LOG_FORMAT = (
2834
"[%(asctime)s] p%(process)s "

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file is part of REANA.
2-
# Copyright (C) 2022, 2023, 2024, 2025 CERN.
2+
# Copyright (C) 2022, 2023, 2024, 2025, 2026 CERN.
33
#
44
# REANA is free software; you can redistribute it and/or modify it
55
# under the terms of the MIT License; see LICENSE file for more details.

0 commit comments

Comments
 (0)