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

Add python 3.10 to test suite for github actions #101

Merged
merged 7 commits into from
Dec 10, 2021
Merged
Show file tree
Hide file tree
Changes from 6 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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9]
python-version: ['3.8', '3.9', '3.10']

# Skip CI if 'skip ci' is contained in latest commit message
if: "!contains(github.event.head_commit.message, 'skip ci')"
Expand All @@ -30,7 +30,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python setup.py install
python -m pip install -e .

- name: Test with pytest
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
python -m pip install -e .[dev]

- name: Set up Pandoc
uses: r-lib/actions/setup-pandoc@v1
Expand Down
6 changes: 5 additions & 1 deletion docs/userguide/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,12 @@ In order to install the latest release of ``reciprocalspaceship``, please use ``

pip install reciprocalspaceship

or ``conda``::

conda install -c conda-forge reciprocalspaceship

It is also always possible to install the library by cloning the repository from GitHub::

git clone https://github.com/Hekstra-Lab/reciprocalspaceship
cd reciprocalspaceship
python setup.py install
python -m pip install -e .