Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pandas v2.0.0 #159

Merged
merged 4 commits into from
Apr 3, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{% set version = "1.5.3" %}
{% set version = "2.0.0" %}

package:
name: pandas
version: {{ version }}

source:
url: https://github.com/pandas-dev/pandas/releases/download/v{{ version }}/pandas-{{ version }}.tar.gz
sha256: 74a3fd7e5a7ec052f183273dc7b0acd3a863edf7520f5d3a1765c04ffdb3b0b1
sha256: cda9789e61b44463c1c4fe17ef755de77bcd13b09ba31c940d20f193d63a5dc8

build:
number: 0
Expand All @@ -30,11 +30,14 @@ requirements:
- setuptools >=51.0.0
- cython >=0.29.24,<3
- numpy
- versioneer
- tomli # [py<311]
run:
- python
- {{ pin_compatible('numpy') }}
- python-dateutil >=2.8.1
- pytz >=2020.1
- python-tzdata >=2022a
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

BTW, tzdata is included in modern Python but pip is designed to find it only if installed by the python alternative like this. We could probably drop the pip check test too. But "overi-nstalling" tzdata is not a big deal and probably better than dropping the pip-check.


test:
imports:
Expand Down