From 56f8c71507ac985e8577cbb955bb2cf7bf14667e Mon Sep 17 00:00:00 2001 From: jdebacker Date: Tue, 20 Feb 2024 18:42:08 -0500 Subject: [PATCH] pin to Python < 3.12 --- conda.recipe/meta.yaml | 6 +++--- environment.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/conda.recipe/meta.yaml b/conda.recipe/meta.yaml index b7a076d8f..9f6d8f8cc 100755 --- a/conda.recipe/meta.yaml +++ b/conda.recipe/meta.yaml @@ -8,7 +8,7 @@ build: requirements: build: - - python + - "python<3.12" - "numpy>=1.14" - "pandas>=1.2.0" - "bokeh>=1.4.0, <3.0.0" @@ -19,9 +19,9 @@ requirements: - aiohttp - curl - openpyxl - + run: - - python + - "python<3.12" - "numpy>=1.14" - "pandas>=1.2.0" - "bokeh>=1.4.0, <3.0.0" diff --git a/environment.yml b/environment.yml index ea0200d93..19dc1a14d 100644 --- a/environment.yml +++ b/environment.yml @@ -2,7 +2,7 @@ name: taxcalc-dev channels: - conda-forge dependencies: -- python +- "python<3.12" - curl - "numpy>=1.14" - "pandas>=1.2.0"