Skip to content

Commit 85303e5

Browse files
committed
build: renamed full environment to all
1 parent fcb0196 commit 85303e5

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

pyproject.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ include = ["pint/default_en.txt", "pint/constants_en.txt"]
3939
[project.optional-dependencies]
4040
test = ["pytest", "pytest-cov", "pytest-subtests", "pytest-benchmark"]
4141
test-mpl = ["pytest-mpl"]
42-
test-full = ["pint[test, test-mpl]"]
43-
codspeed = ["pint[test-full]", "pytest-codspeed"]
42+
test-all = ["pint[test, test-mpl]"]
43+
codspeed = ["pint[test-all]", "pytest-codspeed"]
4444
numpy = ["numpy >= 1.23"]
4545
uncertainties = ["uncertainties >= 3.1.6"]
4646
babel = ["babel <= 2.8"]
@@ -49,7 +49,7 @@ xarray = ["xarray"]
4949
dask = ["dask"]
5050
mip = ["mip >= 1.13"]
5151
matplotlib = ["matplotlib"]
52-
full = [
52+
all = [
5353
"pint[numpy,uncertainties,babel,pandas,pandas,xarray,dask,mip,matplotlib]",
5454
]
5555

@@ -92,11 +92,11 @@ lint = { features = ["lint"], no-default-feature = true }
9292
build = { features = ["build"], no-default-feature = true }
9393
typecheck = { features = ["typecheck"], solve-group = "default" }
9494
test = { features = ["test"], solve-group = "default" }
95-
test-full = { features = ["test-full"], solve-group = "default" }
95+
test-all = { features = ["test-all"], solve-group = "default" }
9696
numpy = { features = ["numpy"], solve-group = "default" }
9797
codspeed = { features = ["codspeed"], solve-group = "default" }
98-
# When pint[full] works in pixi, this will be easier.
99-
full = { features = [
98+
# When pint[all] works in pixi, this will be easier.
99+
all = { features = [
100100
"test",
101101
"test-mpl",
102102
"codspeed",
@@ -116,9 +116,9 @@ test-py313 = ["test", "py313"]
116116
test-py311-numpy = ["numpy", "test", "py311"]
117117
test-py312-numpy = ["numpy", "test", "py312"]
118118
test-py313-numpy = ["numpy", "test", "py313"]
119-
test-py311-full = ["full", "test", "py311"]
120-
test-py312-full = ["full", "test", "py312"]
121-
test-py313-full = ["full", "test", "py313"]
119+
test-py311-all = ["all", "test", "py311"]
120+
test-py312-all = ["all", "test", "py312"]
121+
test-py313-all = ["all", "test", "py313"]
122122

123123
[tool.pixi.feature.dev.dependencies]
124124
tomlkit = "*"

0 commit comments

Comments
 (0)