From 565d9260287107f632edafb90493585bcc214ac7 Mon Sep 17 00:00:00 2001 From: Carter Mak Date: Tue, 12 Aug 2025 11:01:41 -0700 Subject: [PATCH 1/3] Dev version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 16c589e..2c38fe6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aerie-cli" -version = "2.10.1" +version = "0.0.0-dev0" description = "A CLI application and Python API for interacting with Aerie." authors = [] license = "MIT" From 66e6ebd9ad192bcf2ed1b5e049821b47ad0d2c93 Mon Sep 17 00:00:00 2001 From: Carter Mak Date: Fri, 12 Sep 2025 13:39:38 -0700 Subject: [PATCH 2/3] Loosening version specs --- pyproject.toml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2c38fe6..0a908ea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,17 +11,17 @@ packages = [ ] [tool.poetry.dependencies] -python = "^3.6.8" -click = "^8.0.1" -typer = "^0.4.0" -arrow = "^1.2.2" +python = ">=3.6.8" +click = ">=8.0.1" +typer = ">=0.10.0" +arrow = ">=1.2.2" requests = "^2.27.1" rich = "^12.6.0" attrs = "^22.2.0" -pandas = "^1.1.5" -numpy = "^1.19.5" +pandas = ">=1.1.5" +numpy = { version = "^1.19.5", python = "<3.7" } appdirs = "^1.4.4" -importlib-metadata = "^4.8.2" +importlib-metadata = { version = "^4.8.2", python = "<3.8" } [tool.poetry.dev-dependencies] pytest = "^7.0.1" From e3740893ac831e7d53c564a358e36a085164a190 Mon Sep 17 00:00:00 2001 From: Carter Mak Date: Tue, 16 Sep 2025 11:50:26 -0700 Subject: [PATCH 3/3] Version increment --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0a908ea..7b396b2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aerie-cli" -version = "0.0.0-dev0" +version = "2.10.2" description = "A CLI application and Python API for interacting with Aerie." authors = [] license = "MIT"