Skip to content

Commit f173327

Browse files
Merge pull request #38 from WilliamJamieson/bugfix/circular-imports
Fix for circular dependencies between asdf packages
1 parent 0c930f5 commit f173327

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
- name: Install asdf-transform-schemas
125125
run: cd asdf-transform-schemas && pip install .
126126
- name: Install astropy
127-
run: cd astropy && pip install -e .[test]
127+
run: cd astropy && pip install -e .[all,test]
128128
- name: Pip Freeze
129129
run: pip freeze
130130
- name: Run astropy development tests

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
- Add inputs and outputs to base transform schema to properly document them. [#33]
44
- Add spline1d schema. [#41]
55
- Add cosine, tangent, arcsine, arccosine, and arctangent schemas. [#40]
6+
- Fix circular build dependencies for asdf. [#38]
67

78
0.2.0 (2021-12-13)
89

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,12 @@ setup_requires =
1616
setuptools
1717
setuptools_scm
1818
install_requires =
19-
asdf>=2.8.0
19+
asdf-standard>=1.0.1
2020
importlib_resources>=3;python_version<"3.9"
2121

2222
[options.extras_require]
2323
test =
24+
asdf>=2.8.0
2425
pytest
2526

2627
[options.entry_points]

src/asdf_transform_schemas/integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
else:
77
import importlib.resources as importlib_resources
88

9-
from asdf.resource import DirectoryResourceMapping
9+
from asdf_standard import DirectoryResourceMapping
1010

1111
import asdf_transform_schemas
1212

0 commit comments

Comments
 (0)