From 050ea45b79206ada9bf1a69d3812528755f5a5c3 Mon Sep 17 00:00:00 2001 From: regro-cf-autotick-bot <36490558+regro-cf-autotick-bot@users.noreply.github.com> Date: Fri, 16 Jun 2023 01:17:59 +0000 Subject: [PATCH 1/5] updated v0.57.0 --- recipe/meta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 3955dcb..18cf870 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -1,5 +1,5 @@ {% set name = "wetterdienst" %} -{% set version = "0.56.2" %} +{% set version = "0.57.0" %} package: name: {{ name|lower }} @@ -7,7 +7,7 @@ package: source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/wetterdienst-{{ version }}.tar.gz - sha256: e78b0972362c410646e720e65d4342fdae49bc1cc097123523b2d198237e819d + sha256: f7a33ee62409c2bedab08e8c640a3299c89a4e8ba4d7f8c36ddd81933758ff97 build: noarch: python From 9f87cf96cb8aae785186ea438df9daffa9a3183c Mon Sep 17 00:00:00 2001 From: Benjamin Gutzmann Date: Fri, 16 Jun 2023 08:02:43 +0200 Subject: [PATCH 2/5] Update dependencies --- recipe/meta.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 18cf870..1c8a0be 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -26,6 +26,7 @@ requirements: - python >=3.8,<3.12 - aenum >=3.0,<4.0 - aiohttp >=3.8.1,<4.0.0 + - backports-datetime-fromisoformat >=2.0,<3.0 - beautifulsoup4 >=4.9,<5.0 - cachetools >=5.2,<6.0 - click-params >=0.4.1,<0.5 @@ -40,6 +41,7 @@ requirements: - measurement >=3.2,<4.0 - numpy >=1.22,<2.0 - pandas >=1.3,<2.0 + - polars >=0.16,<1.0 - pint >=0.17,<0.18 - platformdirs >=2,<3 - pypdf2 >=1.26,<2.0 From e016ccf9da4462f5cf4eb9622f4100b8d72ba574 Mon Sep 17 00:00:00 2001 From: Xylar Asay-Davis Date: Fri, 16 Jun 2023 09:39:56 +0200 Subject: [PATCH 3/5] Update recipe with changes from grayskull --- recipe/meta.yaml | 46 +++++++++++++++++++++++++--------------------- 1 file changed, 25 insertions(+), 21 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 1c8a0be..12d5c44 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -26,32 +26,36 @@ requirements: - python >=3.8,<3.12 - aenum >=3.0,<4.0 - aiohttp >=3.8.1,<4.0.0 - - backports-datetime-fromisoformat >=2.0,<3.0 - - beautifulsoup4 >=4.9,<5.0 - - cachetools >=5.2,<6.0 - - click-params >=0.4.1,<0.5 - - click >=8.0,<9.0 - - cloup >=1.0,<2.0 - - dateparser >=1.0,<2.0 - - deprecation >=2.1,<3.0 + - backports-datetime-fromisoformat >=2.0.0,<3.0.0 + - beautifulsoup4 >=4.9.0,<5.0.0 + - cachetools >=5.2.0,<6.0.0 + - click >=8.0.0,<9.0.0 + - click-params >=0.4.1,<0.5.0 + - cloup >=1.0.0,<2.0.0 + - deprecation >=2.1.0,<3.0.0 - diskcache >=5.4.0,<6.0.0 - environs >=9.4.0,<10.0.0 - fsspec >=2023.01,<2024.0 - lxml >=4.9.1,<5.0.0 - - measurement >=3.2,<4.0 - - numpy >=1.22,<2.0 - - pandas >=1.3,<2.0 - - polars >=0.16,<1.0 - - pint >=0.17,<0.18 - - platformdirs >=2,<3 - - pypdf2 >=1.26,<2.0 - - python-dateutil >=2.8,<3.0 - - rapidfuzz >=2.1,<3.0 - - requests >=2.20,<3.0 + - measurement >=3.2.0,<4.0.0 + - numpy >=1.22.0,<2.0.0 + - pandas >=1.3.0,<2.0.0 + - pint >=0.17.0,<0.18.0 + - platformdirs >=2.0.0,<3.0.0 + - polars >=0.16.0,<0.17.0 + - pyarrow >=10.0.0,<11.0.0 + - pypdf2 >=1.26.0,<2.0.0 + - python-dateutil >=2.8.2,<3.0.0 + - rapidfuzz >=2.1.0,<3.0.0 + - requests >=2.20.0,<3.0.0 - scikit-learn >=1.0.2,<2.0.0 - - tabulate >=0.8,<0.9 - - timezonefinder >=6.1,<7.0 - - tqdm >=4.47,<5.0 + - tabulate >=0.8.0,<0.9.0 + - timezonefinder >=6.1.0,<7.0.0 + - tqdm >=4.47.0,<5.0.0 + - tzdata >=2023.3.0,<2024.0.0 + - xlsx2csv >=0.8.1,<0.9.0 + - xlsxwriter >=3.0.9,<4.0.0 + - eccodes >=1.5.2,<2.0.0 test: imports: From 8ac5fbe95870f937cfda92def1d6ac95f8dc06d7 Mon Sep 17 00:00:00 2001 From: Xylar Asay-Davis Date: Fri, 16 Jun 2023 01:50:11 -0600 Subject: [PATCH 4/5] Fix `eccodes` --> `python-eccodes` --- recipe/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 12d5c44..dddf846 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -55,7 +55,7 @@ requirements: - tzdata >=2023.3.0,<2024.0.0 - xlsx2csv >=0.8.1,<0.9.0 - xlsxwriter >=3.0.9,<4.0.0 - - eccodes >=1.5.2,<2.0.0 + - python-eccodes >=1.5.2,<2.0.0 test: imports: From 90ba5671c0daf733272743bef48829aa3cbaacc7 Mon Sep 17 00:00:00 2001 From: Xylar Asay-Davis Date: Fri, 16 Jun 2023 02:10:34 -0600 Subject: [PATCH 5/5] Change `tmzdata` --> `python-tmzdata` --- recipe/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index dddf846..f3da349 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -52,7 +52,7 @@ requirements: - tabulate >=0.8.0,<0.9.0 - timezonefinder >=6.1.0,<7.0.0 - tqdm >=4.47.0,<5.0.0 - - tzdata >=2023.3.0,<2024.0.0 + - python-tzdata >=2023.3.0,<2024.0.0 - xlsx2csv >=0.8.1,<0.9.0 - xlsxwriter >=3.0.9,<4.0.0 - python-eccodes >=1.5.2,<2.0.0