From 646a4cad943a3d2800ba53b5442c9235b536db3d Mon Sep 17 00:00:00 2001 From: Joshua Janicas Date: Tue, 12 Mar 2024 11:18:48 -0400 Subject: [PATCH] Update pyproject.toml to support py 3.12 and Typer to newest release --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index fa8a669..ca9a10a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dagster-ext" -version = "0.1.0" +version = "0.1.1" description = "`dagster-ext` is a Meltano utility extension." authors = ["Jules Huisman"] license = "Apache 2.0" @@ -15,9 +15,9 @@ include = [ ] [tool.poetry.dependencies] -python = "<3.11,>=3.8" +python = "<3.13,>=3.8" click = "^8.1.3" -typer = "^0.6.1" +typer = "^0.9.0" dagit = ">=1.0" dagster = ">=1.0" dagster-dbt = ">=0.16"