diff options
| -rw-r--r-- | poetry.lock | 21 | ||||
| -rw-r--r-- | pyproject.toml | 2 | 
2 files changed, 18 insertions, 5 deletions
diff --git a/poetry.lock b/poetry.lock index 873dd1e..35e7c9d 100644 --- a/poetry.lock +++ b/poetry.lock @@ -141,19 +141,20 @@ frozenlist = ">=1.1.0"  [[package]]  name = "alembic" -version = "1.9.4" +version = "1.10.2"  description = "A database migration tool for SQLAlchemy."  category = "main"  optional = false  python-versions = ">=3.7"  files = [ -    {file = "alembic-1.9.4-py3-none-any.whl", hash = "sha256:6f1c2207369bf4f49f952057a33bb017fbe5c148c2a773b46906b806ea6e825f"}, -    {file = "alembic-1.9.4.tar.gz", hash = "sha256:4d3bd32ecdbb7bbfb48a9fe9e6d6fd6a831a1b59d03e26e292210237373e7db5"}, +    {file = "alembic-1.10.2-py3-none-any.whl", hash = "sha256:8b48368f6533c064b39c024e1daba15ae7f947eac84185c28c06bbe1301a5497"}, +    {file = "alembic-1.10.2.tar.gz", hash = "sha256:457eafbdc0769d855c2c92cbafe6b7f319f916c80cf4ed02b8f394f38b51b89d"},  ]  [package.dependencies]  Mako = "*"  SQLAlchemy = ">=1.3.0" +typing-extensions = ">=4"  [package.extras]  tz = ["python-dateutil"] @@ -1109,6 +1110,18 @@ files = [  ]  [[package]] +name = "typing-extensions" +version = "4.5.0" +description = "Backported and Experimental Type Hints for Python 3.7+" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ +    {file = "typing_extensions-4.5.0-py3-none-any.whl", hash = "sha256:fb33085c39dd998ac16d1431ebc293a8b3eedd00fd4a32de0ff79002c19511b4"}, +    {file = "typing_extensions-4.5.0.tar.gz", hash = "sha256:5cb5f4a79139d699607b3ef622a1dedafa84e115ab0024e0d9c044a9479ca7cb"}, +] + +[[package]]  name = "yarl"  version = "1.8.2"  description = "Yet another URL library" @@ -1199,4 +1212,4 @@ multidict = ">=4.0"  [metadata]  lock-version = "2.0"  python-versions = "3.10.*" -content-hash = "d95cf51e6726086e3a5c6acdcb38c6aef5209be7a1e2840e4e2ec0e3c86ce9b9" +content-hash = "71f13f7cf7b2a875ead563a1f6ba5ffc9ea26d19edd38a4054a1ba14a48b9806" diff --git a/pyproject.toml b/pyproject.toml index 0630c08..0b3bef0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ python = "3.10.*"  # See https://bot-core.pythondiscord.com/ for docs.  pydis-core = "9.4.1" -alembic = "1.9.4" +alembic = "1.10.2"  aiohttp = "3.8.4"  coloredlogs = "15.0.1"  deepmerge = "1.1.0"  |