diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7b4a9f08..af5b9742 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,8 +25,8 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 - # with: - # python-version: "3.9" + with: + python-version: "3.11" - name: Upgrading pip run: pip install --upgrade pip diff --git a/docs/contribution.md b/docs/contribution.md index 4bbb2903..db00c2a9 100644 --- a/docs/contribution.md +++ b/docs/contribution.md @@ -8,7 +8,7 @@ The Databook can be forked via the GitHub Web UI from the Databook's [GitHub rep ## Initialize Locally A local repo can be made by pressing the `code` button on the front page of the forked repo, and copying the HTTPS url. Then locally, run the command `git clone `. For more information on cloning GitHub repos, check out GitHub's [Cloning a Repository](https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository) Page. -Then the environment must be set up. You may set up a conda environment if you don't want to interfere with your local environment. After installing conda, this can be done with the commands `conda create --name databook python=3.9` followed by `activate databook` (Windows) or `source activate databook` (Mac/Linux). Within or without the conda environment, the dependencies for the databook can be installed by navigating to the openscope_databook directory and running `pip install -e . --user`. +Then the environment must be set up. You may set up a conda environment if you don't want to interfere with your local environment. After installing conda, this can be done with the commands `conda create --name databook python=3.11` followed by `activate databook` (Windows) or `source activate databook` (Mac/Linux). Within or without the conda environment, the dependencies for the databook can be installed by navigating to the openscope_databook directory and running `pip install -e . --user`. Finally, notebooks can be run with Jupyter notebook by running `jupyter notebook ./docs`