diff --git a/.envrc b/.envrc index 42aedff..7e42da5 100644 --- a/.envrc +++ b/.envrc @@ -1,4 +1,4 @@ -PROJECT_PYTHON_VERSION=3.10 +PROJECT_PYTHON_VERSION=3.11 if [[ ! -d .venv ]]; then >&2 echo "Creating virtual environment..." diff --git a/poetry.lock b/poetry.lock index 728e56c..c57cc94 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.5.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. [[package]] name = "colorama" @@ -38,13 +38,13 @@ files = [ [[package]] name = "packaging" -version = "23.1" +version = "23.2" description = "Core utilities for Python packages" optional = false python-versions = ">=3.7" files = [ - {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, - {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, + {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, + {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, ] [[package]] @@ -64,13 +64,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "pytest" -version = "7.4.2" +version = "7.4.3" description = "pytest: simple powerful testing with Python" optional = false python-versions = ">=3.7" files = [ - {file = "pytest-7.4.2-py3-none-any.whl", hash = "sha256:1d881c6124e08ff0a1bb75ba3ec0bfd8b5354a01c194ddd5a0a870a48d99b002"}, - {file = "pytest-7.4.2.tar.gz", hash = "sha256:a766259cfab564a2ad52cb1aae1b881a75c3eb7e34ca3779697c23ed47c47069"}, + {file = "pytest-7.4.3-py3-none-any.whl", hash = "sha256:0d009c083ea859a71b76adf7c1d502e4bc170b80a8ef002da5806527b9591fac"}, + {file = "pytest-7.4.3.tar.gz", hash = "sha256:d989d136982de4e3b29dabcc838ad581c64e8ed52c11fbe86ddebd9da0818cd5"}, ] [package.dependencies] @@ -97,5 +97,5 @@ files = [ [metadata] lock-version = "2.0" -python-versions = ">=3.10,<3.11" -content-hash = "6d91ca4a89f59182871a7fdb27e1c38dae10c1c1ad8026e896228b204722d4f8" +python-versions = ">=3.10,<3.12" +content-hash = "1811aca10461807bc9e90b46c3c399d90409d44a7c4a01bb5fe9d5624ddec9ed" diff --git a/pyproject.toml b/pyproject.toml index 9a4e6ff..8669bf1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "aws-testlib" version = "0.1.0" -description = "" +description = "Provides support functions for testing AWS testing and mocking, namely AWS API Gateway Velocity engine" authors = ["Martin Macak "] readme = "README.md" packages = [ @@ -9,7 +9,7 @@ packages = [ ] [tool.poetry.dependencies] -python = ">=3.10,<3.11" +python = ">=3.10,<3.12" [tool.poetry.group.test.dependencies]