Skip to content

Commit f23cae6

Browse files
authored
py-iterative-stats: add 0.1.1 (#48959)
1 parent e6e67f8 commit f23cae6

1 file changed

Lines changed: 14 additions & 11 deletions

File tree

  • var/spack/repos/builtin/packages/py-iterative-stats

var/spack/repos/builtin/packages/py-iterative-stats/package.py

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,28 @@ class PyIterativeStats(PythonPackage):
1010

1111
pypi = "iterative-stats/iterative_stats-0.1.0.tar.gz"
1212
git = "https://github.com/IterativeStatistics/BasicIterativeStatistics.git"
13-
maintainers("robcaulk")
13+
maintainers("robcaulk", "viperML", "abhishek1297")
1414

1515
license("BSD-3-Clause")
1616

1717
version("main", branch="main")
18+
version("0.1.1", sha256="c2be6045e720aa7ff5c8dbbcd01d082d1b66f2c2a8613ad825528535e3ce0436")
1819
version("0.1.0", sha256="bb4f378a8fa117d1f24e9ea5ac0f1bd13c04b1ab3693a148ba936ffb237f2fba")
1920
version("0.0.4", sha256="7e838aa79de867b0e312be8cdf9319bb70824b624c684e968636cc8d4c9d5712")
2021

21-
# main dependencies
22-
depends_on("python@3.8.0:3.10", type=("build", "run"))
22+
with default_args(type=("build", "run")):
23+
depends_on("python@3.8:3.10", when="@:0.1.0")
24+
depends_on("python@3.9:3.12", when="@0.1.1:")
25+
depends_on("py-pyyaml@6.0:")
26+
depends_on("py-numpy@1.19:1")
27+
2328
depends_on("py-poetry-core@1.0.0:", type=("build"))
24-
depends_on("py-pyyaml@6.0", type=("build", "run"))
25-
depends_on("py-numpy@1.19:1", type=("build", "run"))
26-
27-
# dev dependencies
28-
depends_on("py-pytest@6.2.1:6", type=("test"))
29-
depends_on("py-autopep8@1.6.0", type=("test"))
30-
depends_on("openturns@1.19+python+libxml2", type=("test"))
31-
depends_on("py-scipy@1.8", type=("test"))
29+
30+
with default_args(type=("test")):
31+
depends_on("py-pytest@6.2.1:6")
32+
depends_on("py-autopep8@1.6.0")
33+
depends_on("openturns@1.19+python+libxml2")
34+
depends_on("py-scipy@1.8:1")
3235

3336
@run_after("install")
3437
@on_package_attributes(run_tests=True)

0 commit comments

Comments
 (0)