Skip to content

Commit fcd68fd

Browse files
authored
upgrade core (#18)
1 parent ee09159 commit fcd68fd

5 files changed

Lines changed: 19 additions & 19 deletions

File tree

.github/workflows/static-checking.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
strategy:
2020
matrix:
21-
python-version: [3.9]
21+
python-version: [3.12]
2222

2323
steps:
2424
- uses: actions/checkout@v3
@@ -35,4 +35,4 @@ jobs:
3535
- name: validate
3636
run: ./validate.sh
3737
- name: tests
38-
run: ./test.sh
38+
run: ./test.sh

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
# Insert dataall CLI's path into the system.
2121
sys.path.insert(0, os.path.abspath(os.path.join("..", "..")))
22-
import dataall_cli # noqa: E402
22+
import dataall_cli
2323

2424
# Append local Sphinx extensions
2525
sys.path.append(os.path.abspath("./_ext"))

poetry.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "dataall-cli"
3-
version = "0.4.2"
3+
version = "0.4.3"
44
description = "AWS data.all CLI"
55
authors = [{ name = "Amazon Web Services" }]
66
license = { text = "Apache License 2.0" }
@@ -17,12 +17,12 @@ dependencies = [
1717
"boto3>=1.28.22",
1818
"botocore>=1.31.22",
1919
"typing-extensions>=4.4.0",
20-
"packaging>=21.1,<24.0",
20+
"packaging>=24.2",
2121
"click>=8.1.6",
2222
"atomicfile>=1.0.1",
2323
"PyYAML>=6.0.1",
2424
"setuptools; python_version >= '3.12'",
25-
"dataall-core>=0.4.2",
25+
"dataall-core>=0.4.3",
2626
]
2727

2828
[project.scripts]

tests/functional/test_datall_cli_client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,9 +135,9 @@ def test_cli_commands_custom_header_invalid(
135135
)
136136

137137
# Set env variable to use custom header
138-
os.environ[
139-
"dataall_custom_headers_json"
140-
] = '{ "X-Custom-Header": "test", "X-Custom-Header-2": 25 '
138+
os.environ["dataall_custom_headers_json"] = (
139+
'{ "X-Custom-Header": "test", "X-Custom-Header-2": 25 '
140+
)
141141

142142
for operation_name, op_details in dict(
143143
itertools.islice(commands.items(), N)

0 commit comments

Comments
 (0)