summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2023-06-08 06:00:05 +0200
committerGitHub <noreply@github.com>2023-06-07 23:00:05 -0500
commit315873cbd329a05f8cb944bcfb8c9ec2866493ff (patch)
tree7f365df467d40dc9462e23986d76b830d73c5827 /var
parente05095af903cdc73b02de56ac2919625d0207c4a (diff)
downloadspack-315873cbd329a05f8cb944bcfb8c9ec2866493ff.tar.gz
spack-315873cbd329a05f8cb944bcfb8c9ec2866493ff.tar.bz2
spack-315873cbd329a05f8cb944bcfb8c9ec2866493ff.tar.xz
spack-315873cbd329a05f8cb944bcfb8c9ec2866493ff.zip
py-keyring: add 23.13.1 (#38183)
* py-keyring: add 23.13.1 * [@spackbot] updating style on behalf of manuelakuhn
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-keyring/package.py14
1 files changed, 9 insertions, 5 deletions
diff --git a/var/spack/repos/builtin/packages/py-keyring/package.py b/var/spack/repos/builtin/packages/py-keyring/package.py
index 00f06b83de..c2e0337ffe 100644
--- a/var/spack/repos/builtin/packages/py-keyring/package.py
+++ b/var/spack/repos/builtin/packages/py-keyring/package.py
@@ -14,6 +14,7 @@ class PyKeyring(PythonPackage):
homepage = "https://github.com/jaraco/keyring"
pypi = "keyring/keyring-23.0.1.tar.gz"
+ version("23.13.1", sha256="ba2e15a9b35e21908d0aaf4e0a47acc52d6ae33444df0da2b49d41a46ef6d678")
version("23.9.1", sha256="39e4f6572238d2615a82fcaa485e608b84b503cf080dc924c43bbbacb11c1c18")
version("23.5.0", sha256="9012508e141a80bd1c0b6778d5c610dd9f8c464d75ac6774248500503f972fb9")
version("23.2.1", sha256="6334aee6073db2fb1f30892697b1730105b5e9a77ce7e61fca6b435225493efe")
@@ -24,22 +25,25 @@ class PyKeyring(PythonPackage):
version("20.0.1", sha256="963bfa7f090269d30bdc5e25589e5fd9dad2cf2a7c6f176a7f2386910e5d0d8d")
version("18.0.1", sha256="67d6cc0132bd77922725fae9f18366bb314fd8f95ff4d323a4df41890a96a838")
- depends_on("python@3.7:", when="@23.5:", type=("build", "run"))
- depends_on("python@3.6:", when="@21:", type=("build", "run"))
- depends_on("python@3.5:", when="@20:", type=("build", "run"))
- depends_on("python@2.7:", type=("build", "run"))
depends_on("py-setuptools@56:", when="@23.1:", type="build")
depends_on("py-setuptools@42:", when="@21:", type="build")
depends_on("py-setuptools@34.4:", type="build")
depends_on("py-setuptools-scm@3.4.1:+toml", when="@21:", type="build")
depends_on("py-setuptools-scm@1.15:", type="build")
- depends_on("py-entrypoints", when="@18", type=("build", "run"))
+
depends_on("py-secretstorage@3.2:", when="@21: platform=linux", type=("build", "run"))
depends_on("py-secretstorage", when="platform=linux", type=("build", "run"))
depends_on("py-jeepney@0.4.2:", when="@21: platform=linux", type=("build", "run"))
+ depends_on(
+ "py-importlib-metadata@4.11.4:", when="@23.10: ^python@:3.11", type=("build", "run")
+ )
depends_on("py-importlib-metadata@3.6:", when="@23: ^python@:3.9", type=("build", "run"))
depends_on("py-importlib-metadata@1:", when="@21:22", type=("build", "run"))
depends_on("py-importlib-metadata", when="@20:", type=("build", "run"))
depends_on("py-jaraco-classes", when="@23.9.1:", type=("build", "run"))
+ depends_on("py-importlib-resources", when="@23.13: ^python@:3.8", type=("build", "run"))
# TODO: additional dependency on pywin32-ctypes required for Windows
+
+ # Historical dependencies
+ depends_on("py-entrypoints", when="@18", type=("build", "run"))