Skip to content

Commit 6f14e38

Browse files
authored
Merge pull request #34 from awslabs/acarbo/update_version_0_4_3
Update version to 0.4.3
2 parents b7ed655 + 045ff41 commit 6f14e38

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ pip install nx_neptune
3030
python -m pip wheel -w dist .
3131

3232
# Install with Jupyter dependencies from wheel:
33-
pip install "dist/nx_neptune-0.4.2-py3-none-any.whl"
33+
pip install "dist/nx_neptune-0.4.3-py3-none-any.whl"
3434
```
3535

3636
### Installation
@@ -140,7 +140,7 @@ We recommend uploading your package as a wheel to Jupyter Notebooks.
140140
```bash
141141
# Package the project from source:
142142
python -m pip wheel -w dist .
143-
# creates dist/nx_neptune-0.4.2-py3-none-any.whl
143+
# creates dist/nx_neptune-0.4.3-py3-none-any.whl
144144
```
145145

146146
### Installation
@@ -149,7 +149,7 @@ To install the required dependencies for the Jupyter notebook (including the `Ju
149149

150150
```bash
151151
# Install with Jupyter dependencies from wheel:
152-
pip install "dist/nx_neptune-0.4.2-py3-none-any.whl[jupyter]"
152+
pip install "dist/nx_neptune-0.4.3-py3-none-any.whl[jupyter]"
153153
```
154154

155155
### Running the Jupyter Notebook

notebooks/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ Once your Neptune notebook instance is running:
150150
cd ./nx-neptune
151151
# On your local machine run:
152152
python -m pip wheel -w dist .
153-
# creates dist/nx_neptune-0.4.2-py3-none-any.whl
153+
# creates dist/nx_neptune-0.4.3-py3-none-any.whl
154154
```
155155
- In JupyterLab, use the upload button (↑) in the file browser to upload:
156156
- The `.whl` file from your local `dist/` directory
@@ -173,7 +173,7 @@ Once your Neptune notebook instance is running:
173173
python -m pip install ipykernel jupyterlab matplotlib scipy
174174
175175
# Install the uploaded wheel file
176-
pip install /home/ec2-user/SageMaker/nx_neptune-0.4.2-py3-none-any.whl
176+
pip install /home/ec2-user/SageMaker/nx_neptune-0.4.3-py3-none-any.whl
177177
178178
# Verify the installation
179179
pip list | grep nx-neptune

nx_neptune/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
from .na_graph import NETWORKX_GRAPH_ID, NETWORKX_S3_IAM_ROLE_ARN, NeptuneGraph
3636
from .utils.decorators import configure_if_nx_active
3737

38-
__version__ = "0.4.2"
38+
__version__ = "0.4.3"
3939

4040
__all__ = [
4141
# environment variables

0 commit comments

Comments
 (0)