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

Add pkld #28818

Merged
merged 8 commits into from
Jan 20, 2025
Merged

Add pkld #28818

Changes from 3 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
45 changes: 45 additions & 0 deletions recipes/pkld/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{% set name = "pkld" %}
{% set version = "1.0.2" %}

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

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

build:
noarch: python
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
paulcbogdan marked this conversation as resolved.
Show resolved Hide resolved
number: 0

requirements:
host:
- python >=3.7
paulcbogdan marked this conversation as resolved.
Show resolved Hide resolved
- pip
- numpy
Copy link
Member

Choose a reason for hiding this comment

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

I believe you can delete numpy and filelock from the host section.

- filelock
- setuptools
run:
- python >=3.7
paulcbogdan marked this conversation as resolved.
Show resolved Hide resolved
- numpy
- filelock

test:
imports:
- pkld
commands:
- pip check
requires:
- pip
paulcbogdan marked this conversation as resolved.
Show resolved Hide resolved

about:
home: https://github.com/shobrook/pkld
summary: Persistent caching for Python functions
license: MIT
license_file: LICENSE

extra:
recipe-maintainers:
- paulcbogdan
Loading