Skip to content

Commit

Permalink
Merge pull request nipype#15 from effigies/ci/py39
Browse files Browse the repository at this point in the history
CI: Test on Python 3.9
  • Loading branch information
effigies authored Feb 24, 2021
2 parents 370b695 + 9a68a93 commit 00d3a52
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
#This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

# Note that editable installs of Pydra and the task package is useful to ensure that the
# template describes namespace packages that can be used in various development environments.
# Packages that use it probably do not want to continue testing with editable installations,
# quadrupling their test load.

name: Python package

# Set once
Expand All @@ -18,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8]
python-version: [3.7, 3.8, 3.9]
pip-flags: ['', '--editable']
pydra:
- 'pydra'
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ All tasks will be inserted into the `pydra.tasks.<yourtaskpackagename>` namespac
1. An example subpackage is found in `pydra/tasks/<yourpackagename>/utils`.
You may wish to add tools to it or delete it.
1. You may want to initialize a [Sphinx] docs directory.
1. Review the workflow in `.github/workflows/pythonpackage.yml`. Testing editable installations
is probably not useful unless you are reconfiguring namespace packages.
1. **Update this README after creating the new repository.**

[Sphinx]: https://www.sphinx-doc.org/en/master/usage/quickstart.html
Expand Down

0 comments on commit 00d3a52

Please sign in to comment.