Skip to content

Commit

Permalink
bump python and add bittensor dep
Browse files Browse the repository at this point in the history
  • Loading branch information
camfairchild committed Oct 15, 2022
1 parent 1a85b06 commit a04561e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 13 deletions.
12 changes: 2 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,8 @@ A python package to register on the bittensor network using a CUDA device.
- sm_86 enabled CUDA GPU (30XX series, Axxxx series or higher)

## Install
Using the wheel for your version of python (3.6, 3.7, etc.) from [releases](https://github.com/opentensor/cubit/releases/latest)
Using the wheel for your version of python (3.7, 3.8, etc.) from [releases](https://github.com/opentensor/cubit/releases/latest)

For Python 3.6
```
pip install https://github.com/opentensor/cubit/releases/download/v1.1.1/cubit-1.1.1-cp36-cp36m-linux_x86_64.whl
```
For Python 3.7
```
pip install https://github.com/opentensor/cubit/releases/download/v1.1.1/cubit-1.1.1-cp37-cp37m-linux_x86_64.whl
Expand All @@ -29,10 +25,6 @@ pip install https://github.com/opentensor/cubit/releases/download/v1.1.1/cubit-1

#### Install testing dependencies
Install `test` extras from wheel
For Python 3.6
```
pip install https://github.com/opentensor/cubit/releases/download/v1.1.1/cubit-1.1.1-cp36-cp36m-linux_x86_64.whl[test]
```
For Python 3.7
```
pip install https://github.com/opentensor/cubit/releases/download/v1.1.1/cubit-1.1.1-cp37-cp37m-linux_x86_64.whl[test]
Expand All @@ -50,7 +42,7 @@ pip install https://github.com/opentensor/cubit/releases/download/v1.1.1/cubit-1
- [cuda-toolkit 11.3 or higher](https://developer.nvidia.com/cuda-downloads)
- nvcc
- gcc (9.3.1 or higher)
- python 3.6 or higher
- python 3.7 or higher

You can check if you have cuda-toolkit with
```
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "cubit"
version = "1.1.1"
version = "1.1.2"
description = "A python package for CUDA registration on bittensor. "
readme = "README.md"
authors = [{ name = "Opentensor Foundation", email = "cameron@opentensor.ai" }]
Expand All @@ -18,9 +18,9 @@ classifiers = [
]
keywords = ["bittensor", "cuda", "register", "cubit"]
dependencies = [
"setuptools>=59.0.0", "wheel", "Cython>=0.29.14", "numpy>=1.19.0"
"setuptools>=59.0.0", "wheel", "Cython>=0.29.14", "numpy>=1.19.0", "bittensor>=3.0.0"
]
requires-python = ">=3.6"
requires-python = ">=3.7"

[project.optional-dependencies]
test = ["black", "pip-tools", "bittensor>=3.0.0", "pycryptodome==3.4.3" ]
Expand Down

0 comments on commit a04561e

Please sign in to comment.