Skip to content

Commit

Permalink
Merge pull request #17 from RamanjaneyuluIdavalapati/master
Browse files Browse the repository at this point in the history
Bumping up numpy version to 1.22.3
  • Loading branch information
Venu authored May 20, 2022
2 parents 7e3afca + ce4d745 commit 4c7d931
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ deploy:
- provider: releases
api_key:
secure: WUC/4w25ZGvmDRItWZbqFVbRhgTqZIWeHye5enfHFKkrY5tn3RxmwKY3s0qHCna8mp5poe01cIe5eDKHuRoSoJTPsXbSkEp5yoj00mCTB1pByhc1axarmvFIhUiXt23QTi5b13ju6IsPll4/GAAqiAQydhBCDuN5wQEol3ilgEBkTvCVZE3e/AowJBNic/7EHS+UsfS7EOkjtCPMHzFycsUcjG9+1sm24nn7Bxq24iCEaeNZBieN2nSdNPzNUaW0qv07zgGPE87jL/5mek2DGH8gSN0qVNDuus1MCbjrPxDqz3M+LypA1YcspIXA+2geArfWYVvpYEvgF5c89s9M2jnn1UlA8A10s8ZRAUvE0kLsAUMMzQNvQklmV7Vfn/8fCWvsc5tUw4G4nP5K352q+/u4DOJ3YATIMT9uzRwbcLWPRP3UjdniLriY9oJAfImIgQRq5XC0pcbpATaswZgg3Ol6L0Aa/V+b2f0yFp6Hkyy3MNTBlSK2/zNtKvR6HxFC1YZzfXBpgLwzmNZdufxnfhwsiDobb/EjUu5fh6U6kGKk+kxEh3iqx1s6KcIKrMi47RMSmLr79OYKRMS/mBkSgmOFB3wC+B7xE/kuJ+MuecFpJWW0Ifdnm2mu++D8ASTKVzxHooxhv9zIyxZZ/iT1JAHjfku146KkYWZE5FTtkbs=
name: diskarray-0.1.9
tag_name: 0.1.9
name: diskarray-0.2.0
tag_name: 0.2.0
true:
repo: deep-compute/diskarray
- provider: pypi
Expand All @@ -19,7 +19,7 @@ install:
- pip install .
language: python
python:
- '3.5'
- '3.8'
script:
- docker run -v $(pwd):/app deepcompute/black:python-black-latest --check .
- python setup.py test
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,13 @@ This module also supports appending your numpy arrays to disk array at any time.

## Installation

> Prerequisites: Python
> Prerequisites: Python(">=3.8.0")
```bash
$ sudo pip install diskarray

# One can use older version of diskarray for Python("<3.8.0")
# Eg: sudo pip install diskarray==0.1.9
```

## Quick Example
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
from setuptools import setup, find_packages

version = "0.1.9"
version = "0.2.0"
setup(
name="diskarray",
python_requires=">=3.8.0",
version=version,
description="A resizable and readable numpy array on disk",
keywords="diskarray",
Expand All @@ -11,7 +12,7 @@
url="https://github.com/deep-compute/diskarray",
download_url="https://github.com/deep-compute/diskarray/tarball/%s" % version,
license="MIT License",
install_requires=["numpy==1.14.3", "basescript==0.2.9"],
install_requires=["basescript==0.2.9", "numpy==1.22.3"],
package_dir={"diskarray": "diskarray"},
packages=find_packages("."),
include_package_data=True,
Expand Down

0 comments on commit 4c7d931

Please sign in to comment.