From 66cdf1e7d5d83a655f4f5fdb0daaa258f04a4b75 Mon Sep 17 00:00:00 2001 From: IliTheButterfly Date: Tue, 21 Apr 2026 12:34:09 -0400 Subject: [PATCH 1/3] Updated todo list --- ReadMe.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/ReadMe.md b/ReadMe.md index 46f8155..b13899f 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -54,8 +54,6 @@ VS Code is preconfigured in `.vscode/settings.json` to run pytest from the repos If VS Code shows `No module named pytest`, your selected interpreter is missing test dependencies. Install them in that same environment with `pip install -e ".[dev]"` (or `pip install pytest`). ## TODO -- [ ] Fix issue with C_IF where variables only used within C_... will not be processed and therefore not added to the variable list - [ ] Add string to char array conversion -- [ ] Add the rest of the api functions - [ ] Add recipe generation and management - [ ] Add structs as a concept that integrates in the code From 20186fc7780068d56f6a1e49fe4b80f38d1a251d Mon Sep 17 00:00:00 2001 From: IliTheButterfly Date: Tue, 21 Apr 2026 12:40:23 -0400 Subject: [PATCH 2/3] Updated versions --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index bc90680..0f603f8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "eb_macro_gen" -version = "1.0.6" +version = "1.1.0" authors = [ { name="IliTheButterfly", email="iliana.decarufel@gmail.com" }, ] @@ -24,7 +24,7 @@ dependencies = [ ] [project.optional-dependencies] dev = [ - "pytest>=8", + "pytest>=9.0.3", ] [project.scripts] From 0e9a342516fb52b29ef9aa871e60525f705fd283 Mon Sep 17 00:00:00 2001 From: IliTheButterfly Date: Tue, 21 Apr 2026 12:41:56 -0400 Subject: [PATCH 3/3] Reverted pytest version for compatibility with python 3.9 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0f603f8..018ca78 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ dependencies = [ ] [project.optional-dependencies] dev = [ - "pytest>=9.0.3", + "pytest>=8", ] [project.scripts]