File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 1
1
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
2
2
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
3
3
4
+ # Note that editable installs of Pydra and the task package is useful to ensure that the
5
+ # template describes namespace packages that can be used in various development environments.
6
+ # Packages that use it probably do not want to continue testing with editable installations,
7
+ # quadrupling their test load.
8
+
4
9
name : Python package
5
10
6
11
# Set once
18
23
runs-on : ubuntu-latest
19
24
strategy :
20
25
matrix :
21
- python-version : [3.7, 3.8]
26
+ python-version : [3.7, 3.8, 3.9 ]
22
27
pip-flags : ['', '--editable']
23
28
pydra :
24
29
- ' pydra'
Original file line number Diff line number Diff line change @@ -16,6 +16,8 @@ All tasks will be inserted into the `pydra.tasks.<yourtaskpackagename>` namespac
16
16
1 . An example subpackage is found in ` pydra/tasks/<yourpackagename>/utils ` .
17
17
You may wish to add tools to it or delete it.
18
18
1 . You may want to initialize a [ Sphinx] docs directory.
19
+ 1 . Review the workflow in ` .github/workflows/pythonpackage.yml ` . Testing editable installations
20
+ is probably not useful unless you are reconfiguring namespace packages.
19
21
1 . ** Update this README after creating the new repository.**
20
22
21
23
[ Sphinx ] : https://www.sphinx-doc.org/en/master/usage/quickstart.html
You can’t perform that action at this time.
0 commit comments