Skip to content

Commit

Permalink
bump project version (#1)
Browse files Browse the repository at this point in the history
* initial res for tpu support

* update readme
  • Loading branch information
a-earthperson authored Mar 27, 2024
1 parent e8e8f3b commit 56fbf15
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Below is a step-by-step example of how to use `inverse-canopy` in your project.
First, you need to import `InverseCanopy` from `inverse_canopy`, along with `tensorflow` and `numpy`.

```shell
!pip install inverse-canopy==0.0.20
!pip install inverse-canopy==0.0.21
```

Alternatively, you can install the CUDA or Metal accelerated versions. No code changes are required as long as the
Expand All @@ -21,12 +21,12 @@ appropriate version is installed.
```shell
# optionally, first check if an nvidia GPU is available
!nvidia-smi
!pip install inverse-canopy[cuda]==0.0.20
!pip install inverse-canopy[cuda]==0.0.21
```

#### inverse-canopy Metal [macOS]
```shell
!pip install inverse-canopy[metal]==0.0.20
!pip install inverse-canopy[metal]==0.0.21
```

```python
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
setup(
name='inverse-canopy',
url='https://openpra.org',
version='0.0.20',
version='0.0.21',
author='Arjun Earthperson',
author_email='[email protected]',
license='AGPL-3.0',
Expand All @@ -18,8 +18,8 @@
long_description_content_type='text/markdown',
long_description=README,
install_requires=[
'tensorflow',
'tensorflow-probability',
'tensorflow>=2.15.0',
'tensorflow-probability>=0.23.0',
'numpy',
'scipy',
'matplotlib'
Expand Down

0 comments on commit 56fbf15

Please sign in to comment.