diff --git a/.github/workflows/static-checking.yml b/.github/workflows/static-checking.yml index ca447d0..b343827 100644 --- a/.github/workflows/static-checking.yml +++ b/.github/workflows/static-checking.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.9] + python-version: [3.12] steps: - uses: actions/checkout@v3 @@ -35,4 +35,4 @@ jobs: - name: validate run: ./validate.sh - name: tests - run: ./test.sh \ No newline at end of file + run: ./test.sh diff --git a/poetry.lock b/poetry.lock index e1e37c3..e825d9f 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 2.2.0 and should not be changed by hand. +# This file is automatically @generated by Poetry 2.2.1 and should not be changed by hand. [[package]] name = "alabaster" @@ -1252,14 +1252,14 @@ test-randomorder = ["pytest-randomly"] [[package]] name = "dataall-core" -version = "0.4.2" +version = "0.4.3" description = "AWS data.all core" optional = false python-versions = "<4.0,>=3.9" groups = ["main"] files = [ - {file = "dataall_core-0.4.2-py3-none-any.whl", hash = "sha256:33a0d9267ae58afee56a396d8c23df2777df656abcf21ea286c417674723cb54"}, - {file = "dataall_core-0.4.2.tar.gz", hash = "sha256:e209be48d4f858dd575562aacf2a1345a65ce1badd3e80c9f2a46b345acbf693"}, + {file = "dataall_core-0.4.3-py3-none-any.whl", hash = "sha256:465c0d1c9371584d0df5ab32bf35ccc34191c28195a8f03d483becef9a583eb5"}, + {file = "dataall_core-0.4.3.tar.gz", hash = "sha256:b415d79a7cdcc1eabece70bb47c4f59d3ae4a32ed13ab671d50e5225759d2535"}, ] [package.dependencies] @@ -1274,7 +1274,7 @@ click = ">=8.1.6,<9.0.0" configparser = ">=6.0.0,<7.0.0" graphql-core = ">=3.2.3,<4.0.0" httpx = ">=0.27.0,<1.0.0" -packaging = ">=21.1,<24.0" +packaging = ">=24.2" PyYAML = ">=6.0.1,<7.0.0" requests = ">=2.31.0,<3.0.0" requests-mock = ">=1.12.1,<2.0.0" @@ -2770,14 +2770,14 @@ et-xmlfile = "*" [[package]] name = "packaging" -version = "23.2" +version = "25.0" description = "Core utilities for Python packages" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" groups = ["main", "dev"] files = [ - {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, - {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, + {file = "packaging-25.0-py3-none-any.whl", hash = "sha256:29572ef2b1f17581046b3a2227d5c611fb25ec70ca1ba8554b24b0e69331a484"}, + {file = "packaging-25.0.tar.gz", hash = "sha256:d443872c98d677bf60f6a1f2f8c1cb748e8fe762d2bf9d3148b5599295b0fc4f"}, ] [[package]] @@ -4340,4 +4340,4 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.1" python-versions = ">=3.9, <4.0" -content-hash = "e5d054d5064931e94b84ce0c96ec6591b4e62b742d6c8b394a042597d31e9c19" +content-hash = "610051f00e287624cf8a9e96aa139a0ce4c923a3a6b5024db5392c2b3947043c" diff --git a/pyproject.toml b/pyproject.toml index 817c2a9..54f15ed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "dataall-sdk" -version = "0.4.2" +version = "0.4.3" description = "AWS data.all SDK" authors = [{ name = "Amazon Web Services" }] license = { text = "Apache License 2.0" } @@ -17,10 +17,10 @@ dependencies = [ "boto3>=1.28.22,<2.0.0", "botocore>=1.31.22,<2.0.0", "typing-extensions>=4.4.0,<5.0.0", - "packaging>=21.1,<24.0", + "packaging>=24.2", "build>=0.10.0,<1.0.0", "setuptools; python_version >= '3.12'", - "dataall-core>=0.4.2", + "dataall-core>=0.4.3", ] [tool.poetry]