Skip to content
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
From 396c12741e1487c55c2070610e66a5ae4f94f692 Mon Sep 17 00:00:00 2001
From: David Laehnemann <[email protected]>
Date: Mon, 1 Dec 2025 14:50:45 +0100
Subject: [PATCH] remove HISTORY.md from setup.py

---
setup.py | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/setup.py b/setup.py
index e22dc08..2fdae18 100644
--- a/setup.py
+++ b/setup.py
@@ -3,15 +3,12 @@ from setuptools import setup, find_packages
with open('README.md') as readme_file:
README = readme_file.read()

-with open('HISTORY.md') as history_file:
- HISTORY = history_file.read()
-
setup_args = dict(
name='multiprocesspandas',
version='1.1.5',
description='Extends Pandas to run apply methods for dataframe, series and groups on multiple cores at same time.',
long_description_content_type="text/markdown",
- long_description=README + '\n\n' + HISTORY,
+ long_description=README,
license='MIT',
packages=find_packages(),
author='Shahnawaz Akhtar',
--
2.51.1

47 changes: 47 additions & 0 deletions recipes/multiprocesspandas/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{% set name = "multiprocesspandas" %}
{% set version = "1.1.5" %}

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

source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/multiprocesspandas-{{ version }}.tar.gz
sha256: 41d48b6ae3dfcdd899f01912cb8ee481caa3e4ebc837e37476d6c8d993ed3c68
patches:
- 0001-remove-HISTORY.md-from-setup.py.patch

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

requirements:
host:
- python >=3.7
- pip
- setuptools
run:
- python >=3.7
- multiprocess ==0.70.11.1
- pandas
- tqdm
- numpy

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

about:
home: https://github.com/akhtarshahnawaz/multiprocesspandas
summary: Extends Pandas to run apply methods for dataframe, series and groups on multiple cores at same time.
license: MIT
license_file: LICENSE.txt

extra:
recipe-maintainers:
- dlaehnemann