From 099831488c342d376a6ad898222a14cd665e839d Mon Sep 17 00:00:00 2001 From: Maxwell Varlack Date: Tue, 19 Jul 2022 15:34:11 -0500 Subject: [PATCH 1/5] update pyparsing to version 3.0.9 --- recipe/meta.yaml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 12b2048..0a73565 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -1,4 +1,4 @@ -{% set version = "3.0.4" %} +{% set version = "3.0.9" %} package: name: pyparsing @@ -6,12 +6,11 @@ package: source: url: https://pypi.io/packages/source/p/pyparsing/pyparsing-{{ version }}.tar.gz - sha256: e0df773d7fa2240322daae7805626dfc5f2d5effb34e1a7be2702c99cfb9f6b1 + sha256: 2b020ecf7d21b687f219b71ecad3631f644a47f01403fa1d1036b0c6416d70fb build: number: 0 - skip: True # [py<36] - noarch: python + skip: True # [py<37] script: {{ PYTHON }} -m pip install . -vv requirements: @@ -20,15 +19,17 @@ requirements: - pip - setuptools - wheel + - flit-core >=3.2 + # flit-core requires tomli + - tomli run: - - python >=3.6 + - python test: imports: - pyparsing requires: - pip - - python <3.10 commands: - pip check From 4a1b640a4724ab3797fd02ca5216242483b5ecfa Mon Sep 17 00:00:00 2001 From: Maxwell Varlack Date: Tue, 26 Jul 2022 09:46:57 -0500 Subject: [PATCH 2/5] correct the flit-core dependency specifications --- recipe/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 0a73565..1f00bd9 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -19,7 +19,7 @@ requirements: - pip - setuptools - wheel - - flit-core >=3.2 + - flit-core >=3.2,<4 # flit-core requires tomli - tomli run: From f2d3a13da52c633e486ab824780fec0dffb94d07 Mon Sep 17 00:00:00 2001 From: Maxwell Varlack Date: Wed, 27 Jul 2022 16:05:58 -0500 Subject: [PATCH 3/5] replace flit-core with flit --- recipe/meta.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 1f00bd9..9c07dd6 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -19,9 +19,7 @@ requirements: - pip - setuptools - wheel - - flit-core >=3.2,<4 - # flit-core requires tomli - - tomli + - flit >=3.2,<4 run: - python From cdb97053ca8c3be8085ff8082625192292d05daf Mon Sep 17 00:00:00 2001 From: Maxwell Varlack Date: Thu, 18 Aug 2022 14:42:32 -0500 Subject: [PATCH 4/5] update the recipe so that it uses the updated version of flit-core instead of flit --- recipe/meta.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 9c07dd6..5dd28c5 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -19,7 +19,8 @@ requirements: - pip - setuptools - wheel - - flit >=3.2,<4 + # - flit >=3.2,<4 + - flit-core >=3.2,<4 run: - python From 964511907acba387f5ee99f2a53e299a6aa7a1d8 Mon Sep 17 00:00:00 2001 From: Maxwell Varlack Date: Tue, 23 Aug 2022 15:57:56 -0500 Subject: [PATCH 5/5] eliminate the commented out section --- recipe/meta.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 5dd28c5..23101ca 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -19,7 +19,6 @@ requirements: - pip - setuptools - wheel - # - flit >=3.2,<4 - flit-core >=3.2,<4 run: - python