From c444106303d2e14cb220fb6c4c1a5fbc53e2e2fe Mon Sep 17 00:00:00 2001 From: Mridang Agarwalla Date: Wed, 2 Apr 2025 12:46:40 +0300 Subject: [PATCH 1/8] Updated the branch that contains the testing stubs --- .gitignore | 9 +++++++++ pyproject.toml | 8 ++++++++ 2 files changed, 17 insertions(+) create mode 100644 .gitignore create mode 100644 pyproject.toml diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..8ae2ef61 --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +devbox.json +devbox.lock +.devbox +.env +.idea +.venv +dist +test +build diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..20aef564 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,8 @@ +[project] +name = "zitadel" +version = "0.1.0" +requires-python = ">=3.7" + +[build-system] +requires = ["poetry-core>=2.0.0,<3.0.0"] +build-backend = "poetry.core.masonry.api" From be942045e2d1c6655501051f03efb6c68cd4b9a7 Mon Sep 17 00:00:00 2001 From: Mridang Agarwalla Date: Thu, 3 Apr 2025 09:00:13 +0300 Subject: [PATCH 2/8] Updated the branch that contains the testing stubs --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 20aef564..cfa2630e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "zitadel" version = "0.1.0" -requires-python = ">=3.7" +requires-python = ">=3.8" [build-system] requires = ["poetry-core>=2.0.0,<3.0.0"] From 06777242bf43af4e1cd78dd13fc52511dba06c19 Mon Sep 17 00:00:00 2001 From: Mridang Agarwalla Date: Thu, 3 Apr 2025 10:30:14 +0300 Subject: [PATCH 3/8] Updated the branch that contains the testing stubs --- pyproject.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index cfa2630e..790785eb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,8 @@ -[project] +[tool.poetry] name = "zitadel" version = "0.1.0" -requires-python = ">=3.8" +description = "" +authors = [] [build-system] requires = ["poetry-core>=2.0.0,<3.0.0"] From 5856fc156035daf0ad8fd9e04cafa970b691738e Mon Sep 17 00:00:00 2001 From: Mridang Agarwalla Date: Thu, 3 Apr 2025 10:33:11 +0300 Subject: [PATCH 4/8] Updated the branch that contains the testing stubs --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 790785eb..2838ee0a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,3 +7,6 @@ authors = [] [build-system] requires = ["poetry-core>=2.0.0,<3.0.0"] build-backend = "poetry.core.masonry.api" + +[tool.poetry.dependencies] +python = ">=3.8" From 2e0d714dc2dcd64de569e0a6182bbc6d4dae46de Mon Sep 17 00:00:00 2001 From: Mridang Agarwalla Date: Wed, 30 Apr 2025 12:21:58 +0530 Subject: [PATCH 5/8] Update pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2838ee0a..97e60c88 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,4 +9,4 @@ requires = ["poetry-core>=2.0.0,<3.0.0"] build-backend = "poetry.core.masonry.api" [tool.poetry.dependencies] -python = ">=3.8" +python = ">=3.8,<3.9.0 || >3.9.0,<3.9.1 || >3.9.1" From 903aeeee062cc03aea3e2f833990a60b6c6360c4 Mon Sep 17 00:00:00 2001 From: Mridang Agarwalla Date: Mon, 26 May 2025 16:07:08 +0530 Subject: [PATCH 6/8] Create main.py --- main.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 main.py diff --git a/main.py b/main.py new file mode 100644 index 00000000..81dd6ed1 --- /dev/null +++ b/main.py @@ -0,0 +1 @@ +import zitadel_client as zitadel From c98e5ead7ef71deba9eac6329ec866adbf1258c3 Mon Sep 17 00:00:00 2001 From: Mridang Agarwalla Date: Wed, 9 Jul 2025 12:22:45 +0530 Subject: [PATCH 7/8] Update pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 97e60c88..bac1cb6d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,4 +9,4 @@ requires = ["poetry-core>=2.0.0,<3.0.0"] build-backend = "poetry.core.masonry.api" [tool.poetry.dependencies] -python = ">=3.8,<3.9.0 || >3.9.0,<3.9.1 || >3.9.1" +python = ">=3.9,<3.9.0 || >3.9.0,<3.9.1 || >3.9.1" From b2f93356fc643bc6949b83dbca750d4e068e4ada Mon Sep 17 00:00:00 2001 From: Mridang Agarwalla Date: Fri, 19 Dec 2025 06:26:56 +0530 Subject: [PATCH 8/8] chore: update Python version requirement to >=3.10 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index bac1cb6d..0f7316ee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,4 +9,4 @@ requires = ["poetry-core>=2.0.0,<3.0.0"] build-backend = "poetry.core.masonry.api" [tool.poetry.dependencies] -python = ">=3.9,<3.9.0 || >3.9.0,<3.9.1 || >3.9.1" +python = ">=3.10"