From b18b163561938c1c5c63c0b800e707d091026efe Mon Sep 17 00:00:00 2001 From: Schuyler Martin Date: Wed, 8 Nov 2023 13:44:03 -0700 Subject: [PATCH 1/2] v0.1.2 - Fixes a number of typing and infrastructure issues --- CHANGELOG.md | 4 ++++ environment.yaml | 2 +- pyproject.toml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e51958..7e2931c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog Note: version releases in the 0.x.y range may introduce breaking changes. +## 0.1.2 +- Fixes bug with reporting typing (`py.typed` was in the wrong location) +- Fixes and improves infrastructure + ## 0.1.1 - Adds `CHANGELOG.md` - Bug fixes diff --git a/environment.yaml b/environment.yaml index 9521662..648f354 100644 --- a/environment.yaml +++ b/environment.yaml @@ -13,7 +13,7 @@ dependencies: - pytest-xdist - pylint - pip - - click>=8.1.6 + - click>=8.1.7 - conda - jinja2 - pyyaml diff --git a/pyproject.toml b/pyproject.toml index 66c292d..114a07f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ namespaces = false [project] name = "percy" -version = "0.1.1" +version = "0.1.2" authors = [ { name="Anaconda, Inc.", email="distribution_team@anaconda.com" }, ] From 725dff148d4b7212fed6e2695dc9318caaa1b880 Mon Sep 17 00:00:00 2001 From: Schuyler Martin Date: Wed, 8 Nov 2023 13:47:23 -0700 Subject: [PATCH 2/2] Aligns recipe file with the feedstock --- conda.recipe/meta.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/conda.recipe/meta.yaml b/conda.recipe/meta.yaml index 0022324..ebd434d 100644 --- a/conda.recipe/meta.yaml +++ b/conda.recipe/meta.yaml @@ -1,6 +1,6 @@ package: name: percy - version: 0.1.1 + version: 0.1.2 source: path: ../ @@ -19,8 +19,8 @@ requirements: - setuptools - wheel run: - - python - - click + - python >=3.8 + - click >=8.1.7 - conda - jinja2 - pyyaml