Skip to content
This repository was archived by the owner on Feb 2, 2024. It is now read-only.
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
5 changes: 3 additions & 2 deletions conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,16 @@ requirements:
- python
- setuptools
- numba {{ NUMBA_VERSION }}
- numpy
- numpy # [win or osx or py==38]
Copy link
Contributor

Choose a reason for hiding this comment

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

Why numba build version is restricted only on linux and python=3.7?
How it's going to work on win or linux+python=3.8 (i.e. will the core issue remain unsolved there)?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

The initial problem we are trying to resolve by this change is applicable only for linux.

- numpy 1.17 # [linux and py==37]
- pandas {{ PANDAS_VERSION }}
- pyarrow {{ PYARROW_VERSION }}
- wheel
- tbb-devel

run:
- python
- numpy
- {{ pin_compatible('numpy') }}
- pandas {{ PANDAS_VERSION }}
- pyarrow {{ PYARROW_VERSION }}
- numba {{ NUMBA_VERSION }}
Expand Down