Skip to content

Commit 9ed32a0

Browse files
committed
upped pydra dep to 1.0a
1 parent 033b7cc commit 9ed32a0

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ All tasks will be inserted into the `pydra.tasks.<yourtaskpackagename>` namespac
1111
1. Once the repo is created and cloned, search for CHANGEME (`grep -rn CHANGEME . `) and
1212
replace with appropriate name.
1313
1. Rename the namespace package root directory to replace `CHANGEME` with the name of the package:
14-
* `src/pydra/tasks/CHANGEME`
14+
* `pydra/tasks/CHANGEME`
1515
1. Under the newly renamed package (i.e. formerly CHANGEME) there is a directory named "v1",
16-
`src/pydra/tasks/<package-name>/v1`, change this to valid Python package name starting with
16+
`pydra/tasks/<package-name>/v1`, change this to valid Python package name starting with
1717
'v' to indicate the version of the tool the Pydra interfaces will be designed for,
18-
e.g. FSL v6.0.2 could be `src/pydra/tasks/fsl/v6` or `src/pydra/tasks/fsl/v6_0` depending on
18+
e.g. FSL v6.0.2 could be `pydra/tasks/fsl/v6` or `pydra/tasks/fsl/v6_0` depending on
1919
how stable the CLI of the tool is between minor versions.
20-
1. Edit `src/pydra/tasks/<package-name>/latest.py` to update references to `v1` to the
20+
1. Edit `pydra/tasks/<package-name>/latest.py` to update references to `v1` to the
2121
tool target version
22-
1. Add tasks to the `src/pydra/tasks/<package-name>/v<package-version>` folder.
22+
1. Add tasks to the `pydra/tasks/<package-name>/v<package-version>` folder.
2323
1. You may want to initialize a [Sphinx] docs directory.
2424
1. Review the workflow in `.github/workflows/pythonpackage.yml`. Testing editable installations
2525
is probably not useful unless you are reconfiguring namespace packages.

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
# -- Project information -----------------------------------------------------
1919

20-
project = "pydra-CHANGEME"
20+
project = "pydra-tasks-CHANGEME"
2121
copyright = "2020, Xihe Xie"
2222
author = "Xihe Xie"
2323

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ requires = ["hatchling", "hatch-vcs"]
33
build-backend = "hatchling.build"
44

55
[project]
6-
name = "pydra-CHANGEME"
6+
name = "pydra-tasks-CHANGEME"
77
description = "Pydra tasks package for CHANGEME"
88
readme = "README.md"
99
requires-python = ">=3.8"
1010
dependencies = [
11-
"pydra >=0.22",
12-
"fileformats >=0.8.3",
11+
"pydra >=1.0a",
12+
"fileformats >=0.15.0",
1313
"fileformats-datascience >=0.1",
1414
"fileformats-medimage >=0.4.1",
1515
"fileformats-medimage-CHANGEME"

0 commit comments

Comments
 (0)