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

Update pandas dependency for LDSC #28030

Merged
merged 2 commits into from Apr 15, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions recipes/ldsc/meta.yaml
Expand Up @@ -13,7 +13,7 @@ source:

build:
noarch: python
number: 1
number: 2

requirements:
build:
Expand All @@ -24,7 +24,7 @@ requirements:
- bitarray
- pybedtools
- scipy
- pandas
- pandas <0.21.0
- numpy

test:
Expand Down
4 changes: 2 additions & 2 deletions recipes/ldsc/setup.py
@@ -1,13 +1,13 @@
from setuptools import setup

setup(name='ldsc',
version='1.0',
version='1.0.1',
description='LD Score Regression (LDSC)',
url='http://github.com/bulik/ldsc',
author='Brendan Bulik-Sullivan and Hilary Finucane',
author_email='',
license='GPLv3',
packages=['ldscore'],
scripts=['ldsc.py', 'munge_sumstats.py'],
install_requires = ['bitarray','nose','pybedtools','scipy','numpy','pandas']
install_requires = ['bitarray','pybedtools','scipy','numpy','pandas<0.21.0']
)