Skip to content

Commit c1a6b49

Browse files
Add asdf as an optional dep
1 parent 6e7a338 commit c1a6b49

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

pyproject.toml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,9 @@ authors = [
1616
{ name = "The SunPy Community", email = "sunpy@googlegroups.com" },
1717
]
1818
dependencies = [
19-
"astropy>=5.3",
20-
"gwcs>=0.20",
21-
"numpy>=1.23.0",
22-
"asdf>=2.14.4"
19+
"astropy>=5.0.6,!=5.1.0",
20+
"gwcs>=0.18",
21+
"numpy>=1.23.0"
2322
]
2423
dynamic = ["version"]
2524

@@ -54,11 +53,16 @@ plotting = [
5453
reproject = [
5554
"reproject>=0.7.1",
5655
]
56+
asdf = [
57+
"asdf>=2.14.4",
58+
"astropy>=5.3.0",
59+
"gwcs>=0.20"
60+
]
5761
all = [
58-
"ndcube[plotting,reproject]",
62+
"ndcube[plotting,reproject,asdf]",
5963
]
6064
dev = [
61-
"ndcube[tests,docs,plotting,reproject]",
65+
"ndcube[tests,docs,plotting,reproject,asdf]",
6266
]
6367
[project.urls]
6468
repository = "https://docs.sunpy.org/projects/ndcube"

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ deps =
6363
figure-!devdeps: dask
6464
# The following indicates which extras_require will be installed
6565
extras =
66+
asdf
6667
plotting
6768
reproject
6869
tests

0 commit comments

Comments
 (0)