Skip to content

Commit 69f6d78

Browse files
authored
Merge pull request #96 from ArcanaFramework/pydra-syntax-changes
Remote direct references in pyproject.tomls
2 parents 7a17013 + a6c2323 commit 69f6d78

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/ci-cd.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ jobs:
4646
run: python3 -m pip install -e .[test]
4747
- name: Install Extras Package
4848
run: python3 -m pip install -e ./extras[test]
49+
- name: Install development Pydra
50+
run: pip install --no-deps git+https://github.com/nipype/pydra.git@new-syntax
4951
- name: MyPy
5052
run: mypy --install-types --non-interactive --no-warn-unused-ignores .
5153
- name: Pytest

extras/pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ test = [
4343
"pytest-cov>=2.12.1",
4444
"codecov",
4545
"medimages4tests",
46-
"pydra @ git+https://github.com/nipype/pydra.git@new-syntax",
4746
]
4847

4948
[project.urls]
@@ -60,7 +59,7 @@ version-file = "fileformats/extras/core/_version.py"
6059
packages = ["fileformats"]
6160

6261
[tool.hatch.metadata]
63-
allow-direct-references = true
62+
allow-direct-references = false
6463

6564
[tool.black]
6665
target-version = ['py38']

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ source = "vcs"
7676
version-file = "fileformats/core/_version.py"
7777

7878
[tool.hatch.metadata]
79-
allow-direct-references = true
79+
allow-direct-references = false
8080

8181
[tool.hatch.build]
8282
packages = ["fileformats"]

0 commit comments

Comments
 (0)