Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Next Release 0.7.1 #1144

Merged
merged 2 commits into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,14 +100,14 @@ However, the repository will still need to be cloned if you wish to use the Jupy

#### Download the Repo

We recommend using the latest release of `ark`. You can find all the versions available in the [Releases Section](https://github.com/angelolab/ark-analysis/releases).
You can find all the versions available in the [Releases Section](https://github.com/angelolab/ark-analysis/releases).
Open terminal and navigate to where you want the code stored.


If you would like to use the latest version of `ark` simply clone the project and create the Conda environment.

```sh
git clone -b v0.7.0 https://github.com/angelolab/ark-analysis.git
git clone -b v0.7.1 https://github.com/angelolab/ark-analysis.git
cd ark-analysis
conda env create -f environment.yml
```
Expand All @@ -129,7 +129,7 @@ Our repo runs best on Linux-based systems (including MacOS). If you need to run

Enter the following command into terminal from the same directory you ran the above commands:

```
```sh
./start_docker.sh
```

Expand Down Expand Up @@ -245,16 +245,16 @@ This project is still under development, and we are making frequent changes and

First, get the latest version of the repository.

```
```sh
git pull
```

Then, run the command below to update the Jupyter notebooks to the latest version
```
```sh
./start_docker.sh --update
```
or
```
```sh
./start_docker.sh -u
```

Expand Down
2 changes: 1 addition & 1 deletion start_docker.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

# define the version number, this needs to be updated every new Docker release
VERSION='v0.7.0'
VERSION='v0.7.1'

# check for template developer flag
JUPYTER_DIR='scripts'
Expand Down
Loading