Skip to content

Commit

Permalink
hotfix version number (v1.1.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
zzachw committed Nov 16, 2022
1 parent 511be5f commit 7a819ba
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,13 @@ Installation

.. code-block:: bash
pip install pyhealth==1.0a2
pip install pyhealth
- or from github source:

.. code-block:: bash
git clone -b v1.0a2 https://github.com/sunlabuiuc/PyHealth.git
git clone https://github.com/sunlabuiuc/PyHealth.git
cd pyhealth
pip install .
Expand Down
4 changes: 2 additions & 2 deletions docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ You could install from PyPi:

.. code-block:: bash
pip install pyhealth==1.0a2
pip install pyhealth
or from github source:

.. code-block:: bash
git clone -b v1.0a2 https://github.com/sunlabuiuc/PyHealth.git
git clone https://github.com/sunlabuiuc/PyHealth.git
cd pyhealth
pip install .
Expand Down
2 changes: 1 addition & 1 deletion pyhealth/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import os
from pathlib import Path

__version__ = "1.0a2"
__version__ = "1.1.1"

# package-level cache path
BASE_CACHE_PATH = os.path.join(str(Path.home()), ".cache/pyhealth/")
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def readme():
encoding='utf-8') as f:
requirements = f.read().splitlines()

VERSION = "1.0a2"
VERSION = "1.1.1"

setup(
name='pyhealth',
Expand Down

0 comments on commit 7a819ba

Please sign in to comment.