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

Fix dependencies using grayskull #134

Merged
merged 2 commits into from
May 25, 2022
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .ci_support/osx_64_numpy1.19python3.8.____73_pypy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ MACOSX_DEPLOYMENT_TARGET:
c_compiler:
- clang
c_compiler_version:
- '12'
- '13'
channel_sources:
- conda-forge
channel_targets:
- conda-forge main
cxx_compiler:
- clangxx
cxx_compiler_version:
- '12'
- '13'
macos_machine:
- x86_64-apple-darwin13.4.0
numpy:
Expand Down
4 changes: 2 additions & 2 deletions .ci_support/osx_64_numpy1.19python3.8.____cpython.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ MACOSX_DEPLOYMENT_TARGET:
c_compiler:
- clang
c_compiler_version:
- '12'
- '13'
channel_sources:
- conda-forge
channel_targets:
- conda-forge main
cxx_compiler:
- clangxx
cxx_compiler_version:
- '12'
- '13'
macos_machine:
- x86_64-apple-darwin13.4.0
numpy:
Expand Down
4 changes: 2 additions & 2 deletions .ci_support/osx_64_numpy1.19python3.9.____73_pypy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ MACOSX_DEPLOYMENT_TARGET:
c_compiler:
- clang
c_compiler_version:
- '12'
- '13'
channel_sources:
- conda-forge
channel_targets:
- conda-forge main
cxx_compiler:
- clangxx
cxx_compiler_version:
- '12'
- '13'
macos_machine:
- x86_64-apple-darwin13.4.0
numpy:
Expand Down
4 changes: 2 additions & 2 deletions .ci_support/osx_64_numpy1.19python3.9.____cpython.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ MACOSX_DEPLOYMENT_TARGET:
c_compiler:
- clang
c_compiler_version:
- '12'
- '13'
channel_sources:
- conda-forge
channel_targets:
- conda-forge main
cxx_compiler:
- clangxx
cxx_compiler_version:
- '12'
- '13'
macos_machine:
- x86_64-apple-darwin13.4.0
numpy:
Expand Down
4 changes: 2 additions & 2 deletions .ci_support/osx_64_numpy1.21python3.10.____cpython.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ MACOSX_DEPLOYMENT_TARGET:
c_compiler:
- clang
c_compiler_version:
- '12'
- '13'
channel_sources:
- conda-forge
channel_targets:
- conda-forge main
cxx_compiler:
- clangxx
cxx_compiler_version:
- '12'
- '13'
macos_machine:
- x86_64-apple-darwin13.4.0
numpy:
Expand Down
4 changes: 2 additions & 2 deletions .ci_support/osx_arm64_numpy1.19python3.8.____cpython.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ MACOSX_DEPLOYMENT_TARGET:
c_compiler:
- clang
c_compiler_version:
- '12'
- '13'
channel_sources:
- conda-forge
channel_targets:
- conda-forge main
cxx_compiler:
- clangxx
cxx_compiler_version:
- '12'
- '13'
macos_machine:
- arm64-apple-darwin20.0.0
numpy:
Expand Down
4 changes: 2 additions & 2 deletions .ci_support/osx_arm64_numpy1.19python3.9.____cpython.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ MACOSX_DEPLOYMENT_TARGET:
c_compiler:
- clang
c_compiler_version:
- '12'
- '13'
channel_sources:
- conda-forge
channel_targets:
- conda-forge main
cxx_compiler:
- clangxx
cxx_compiler_version:
- '12'
- '13'
macos_machine:
- arm64-apple-darwin20.0.0
numpy:
Expand Down
4 changes: 2 additions & 2 deletions .ci_support/osx_arm64_numpy1.21python3.10.____cpython.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ MACOSX_DEPLOYMENT_TARGET:
c_compiler:
- clang
c_compiler_version:
- '12'
- '13'
channel_sources:
- conda-forge
channel_targets:
- conda-forge main
cxx_compiler:
- clangxx
cxx_compiler_version:
- '12'
- '13'
macos_machine:
- arm64-apple-darwin20.0.0
numpy:
Expand Down
13 changes: 9 additions & 4 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ source:
sha256: 92bc1fc585f1463ca827b45535957815b7deb218c549b7c18402c322c7549a12

build:
number: 1
number: 2
script:
- export PYTHONUNBUFFERED=1 # [ppc64le]
- {{ PYTHON }} -m pip install -vv --no-deps --ignore-installed . # [not unix]
Expand All @@ -27,17 +27,22 @@ requirements:
host:
- python
- pip
- cython >=0.29.16
- setuptools >=51.0.0
- cython >=0.29.24,<3
- numpy
run:
- python
- {{ pin_compatible('numpy') }}
- python-dateutil >=2.7.3
- pytz >=2017.2
- python-dateutil >=2.8.1
- pytz >=2020.1

test:
imports:
- pandas
commands:
- pip check
requires:
- pip

about:
home: http://pandas.pydata.org
Expand Down