forked from conda-forge/staged-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request conda-forge#15047 from janjagusch/add-pandas-strea…
…ming-recipe add pandas-streaming recipe
- Loading branch information
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{% set name = "pandas-streaming" %} | ||
{% set version = "0.2.175" %} | ||
|
||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://github.com/sdpython/pandas_streaming/archive/refs/tags/v175.tar.gz # unfortunately the GitHub tags do not match the PyPI tags and the PyPI release doesn't contain an sdist | ||
sha256: 9d08acc7d5a87f3da6d66a3ad8728bdba2499d4cccdbb9720a4aa2b7f86f6d4a | ||
|
||
build: | ||
number: 0 | ||
script: {{ PYTHON }} -m pip install . -vv | ||
|
||
requirements: | ||
host: | ||
- python | ||
- pip | ||
- pyquickhelper | ||
run: | ||
- python | ||
- numpy | ||
- pandas | ||
- ijson | ||
|
||
test: | ||
imports: | ||
- pandas_streaming | ||
commands: | ||
- pip check | ||
requires: | ||
- pip | ||
|
||
about: | ||
home: http://www.xavierdupre.fr/app/pandas_streaming/helpsphinx/index.html | ||
summary: Streaming API for pandas applied to big datasets | ||
license: MIT | ||
license_file: LICENSE.txt | ||
|
||
extra: | ||
recipe-maintainers: | ||
- janjagusch |