Skip to content

Commit

Permalink
rename extra
Browse files Browse the repository at this point in the history
  • Loading branch information
edopao committed Jan 30, 2025
1 parent 97841ee commit b7357a7
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 30 deletions.
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@
"internal": {"extras": [], "markers": ["not requires_dace"]},
"dace": {"extras": ["dace"], "markers": ["requires_dace"]},
}
# Use dace-dev extra for GT4Py-next, which will pull dace from git repository
# Use dace-next extra for GT4Py-next, to install a different dace version than in cartesian
CodeGenNextTestSettings = CodeGenTestSettings | {
"dace": {"extras": ["dace-dev"], "markers": ["requires_dace"]},
"dace": {"extras": ["dace-next"], "markers": ["requires_dace"]},
}


Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ cuda11 = ['cupy-cuda11x>=12.0']
cuda12 = ['cupy-cuda12x>=12.0']
# features
dace = ['dace>=1.0.1,<1.1.0'] # v1.x will contain breaking changes, see https://github.com/spcl/dace/milestone/4
dace-dev = ['dace'] # latest version will be pulled from the git repository
dace-next = ['dace'] # pull dace latest version from the git repository
formatting = ['clang-format>=9.0']
jax = ['jax>=0.4.26']
jax-cuda12 = ['jax[cuda12_local]>=0.4.26', 'gt4py[cuda12]']
Expand Down Expand Up @@ -442,11 +442,11 @@ conflicts = [
],
[
{extra = 'dace'},
{extra = 'dace-dev'}
{extra = 'dace-next'}
],
[
{extra = 'all'},
{extra = 'dace-dev'}
{extra = 'dace-next'}
]
]

Expand All @@ -457,4 +457,4 @@ url = 'https://test.pypi.org/simple/'

[tool.uv.sources]
atlas4py = {index = "test.pypi"}
dace = {git = "https://github.com/spcl/dace", branch = "main", extra = "dace-dev"}
dace = {git = "https://github.com/spcl/dace", branch = "main", extra = "dace-next"}
Loading

0 comments on commit b7357a7

Please sign in to comment.