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 package multifutures #28566

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
51 changes: 51 additions & 0 deletions recipes/multifutures/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{% set name = "multifutures" %}
{% set version = "0.3.2" %}
{% set python_min = "3.9" %}

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

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

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

requirements:
host:
- python {{ python_min }}
- poetry-core
- pip
run:
- python >={{ python_min }}
- exceptiongroup
- limits
- tqdm
run_constrained:
- loky *
- psutil *

test:
imports:
- multifutures
commands:
- pip check
requires:
- pip
- python {{ python_min }}

about:
home: https://github.com/pmav99/multifutures
summary: Multiprocessing/multithreading made easy
license: MIT
license_file: LICENSE.txt

extra:
recipe-maintainers:
- brey
- pmav99
- tomsail
Loading