Skip to content

Commit

Permalink
Merge pull request #128 from conda-forge-admin/conda_forge_admin_127
Browse files Browse the repository at this point in the history
ENH: update package version
  • Loading branch information
YarShev authored Apr 16, 2024
2 parents 7d9d635 + d22ab76 commit 374f38e
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 21 deletions.
2 changes: 0 additions & 2 deletions .ci_support/win_64_python3.10.____cpython.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
c_stdlib:
- vs
c_stdlib_version:
- '2019'
channel_sources:
- conda-forge
channel_targets:
Expand Down
2 changes: 0 additions & 2 deletions .ci_support/win_64_python3.11.____cpython.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
c_stdlib:
- vs
c_stdlib_version:
- '2019'
channel_sources:
- conda-forge
channel_targets:
Expand Down
2 changes: 0 additions & 2 deletions .ci_support/win_64_python3.8.____cpython.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
c_stdlib:
- vs
c_stdlib_version:
- '2019'
channel_sources:
- conda-forge
channel_targets:
Expand Down
2 changes: 0 additions & 2 deletions .ci_support/win_64_python3.9.____cpython.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
c_stdlib:
- vs
c_stdlib_version:
- '2019'
channel_sources:
- conda-forge
channel_targets:
Expand Down
8 changes: 4 additions & 4 deletions README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 4 additions & 8 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{% set version = "0.28.2" %}
{% set version = "0.29.0" %}

package:
name: modin-packages
version: {{ version }}

source:
url: https://github.com/modin-project/modin/archive/refs/tags/{{ version }}.tar.gz
sha256: aefbb94e281fa4d18c4aa04f3d861d8eb2b93ea438cc61adde6685a61abba407
sha256: 239b8becd183d5426fb0fbd4d0c3485e6ee7696f4c0bdf2967eb541dfaa575c3
patches:
# Remove all requirements from setup.py - they should be handled here.
# The point is to create a "patch failed" conflict when dependencies change
Expand All @@ -33,8 +33,7 @@ outputs:
- {{ pin_subpackage('modin-core', exact=True) }}
- {{ pin_subpackage('modin-dask', exact=True) }}
- {{ pin_subpackage('modin-unidist', exact=True) }}
# ray does not have OSX builds yet
- {{ pin_subpackage('modin-ray', exact=True) }} # [not osx]
- {{ pin_subpackage('modin-ray', exact=True) }}
# Note: modin-hdk is conda-only, its dependencies were never published on PyPI
- {{ pin_subpackage('modin-hdk', exact=True) }} # [linux or win]
#- {{ pin_subpackage('modin-spreadsheet', exact=True) }} # turned off for now, see below
Expand Down Expand Up @@ -98,17 +97,14 @@ outputs:
- python -c "import modin.pandas as pd, modin.config as cfg; cfg.Engine.put('Dask'); df = pd.DataFrame([])"

- name: modin-ray
build:
# There is no Ray in conda-forge for MacOS yet, see conda-forge/ray-packages-feedstock#2
skip: true # [osx]
requirements:
host:
- python
run:
- python
- {{ pin_subpackage('modin-core', exact=True) }}
# ray==2.5.0 broken: https://github.com/conda-forge/ray-packages-feedstock/issues/100
- ray-default >=1.13.0,!=2.5.0
- ray-default >=2.1.0,!=2.5.0
# https://github.com/modin-project/modin/pull/5270#issuecomment-1331172629
# workaround for https://github.com/conda/conda/issues/11744
- grpcio!=1.45.*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ index dfdbd974..7a3f32d3 100644
-dask_deps = ["dask>=2.22.0", "distributed>=2.22.0"]
+dask_deps = []
# ray==2.5.0 broken: https://github.com/conda-forge/ray-packages-feedstock/issues/100
-ray_deps = ["ray[default]>=1.13.0,!=2.5.0", "pyarrow>=7.0.0"]
-ray_deps = ["ray[default]>=2.1.0,!=2.5.0", "pyarrow>=7.0.0"]
-mpi_deps = ["unidist[mpi]>=0.2.1"]
-spreadsheet_deps = ["modin-spreadsheet>=0.1.0"]
+ray_deps = []
Expand Down

0 comments on commit 374f38e

Please sign in to comment.