Skip to content

Commit

Permalink
fix dependencies for anaconda
Browse files Browse the repository at this point in the history
  • Loading branch information
rishi-kulkarni committed Jun 5, 2021
1 parent 7afb4c2 commit a3cccba
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## A Hierarchical Resampling Package for Python

Version 1.0
Version 1.0.1

hierarch is a package for hierarchical resampling (bootstrapping, permutation) of datasets in Python. Because for loops are ultimately intrinsic to cluster-aware resampling, hierarch uses Numba to accelerate many of its key functions.

Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
numba==0.53.1
numpy==1.20.3
numpy==1.20.2
pandas==1.2.4
scipy==1.6.3
scipy==1.6.2
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="hierarch",
version="1.0.0",
version="1.0.1",
author="Rishi Kulkarni",
author_email="[email protected]",
description="Hierarchical hypothesis testing library",
Expand All @@ -15,8 +15,8 @@
url="https://github.com/rishi-kulkarni/hierarch",
packages=setuptools.find_packages(),
install_requires=[
"numpy>=1.20.3",
"scipy>=1.6.3",
"numpy>=1.20.2",
"scipy>=1.6.2",
"numba>=0.53.1",
"pandas>=1.2.4",
],
Expand Down

0 comments on commit a3cccba

Please sign in to comment.