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

Adding river #27936

Closed
wants to merge 1 commit into from
Closed
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
49 changes: 49 additions & 0 deletions recipes/river/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{% set name = "river" %}
{% set version = "0.21.2" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/river-{{ version }}.tar.gz
sha256: 359d5e9b267b07e025f0dee1e2621c6fa587a73152054387a506877e2d8f68be

build:
noarch: python
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
number: 0

requirements:
host:
- python >=3.9,<4.0
- poetry-core >=1.0.0
- cython
- numpy
- setuptools
- wheel
- setuptools-rust
- pip
run:
- python >=3.9.0,<4.0.0
- numpy >=1.23.0,<2.0.0
- scipy >=1.12.1,<2.0.0
- pandas >=2.1.0,<3.0.0

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

about:
home: https://riverml.xyz/
summary: Online machine learning in Python
license: BSD-3-Clause
license_file: LICENSE

extra:
recipe-maintainers:
- ProfLeao
Loading