summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2022-02-22 14:58:21 +0100
committerGitHub <noreply@github.com>2022-02-22 14:58:21 +0100
commitaca6b73a6c2bd2ac156a26d1c84c778a09a4af98 (patch)
treed40d6d46ba53ba21ba3092bfcab97ec0a2f7a028
parent92970c2006dc25a52b53f40f7f470dc56991a760 (diff)
downloadspack-aca6b73a6c2bd2ac156a26d1c84c778a09a4af98.tar.gz
spack-aca6b73a6c2bd2ac156a26d1c84c778a09a4af98.tar.bz2
spack-aca6b73a6c2bd2ac156a26d1c84c778a09a4af98.tar.xz
spack-aca6b73a6c2bd2ac156a26d1c84c778a09a4af98.zip
py-flit: add v3.6.0 (#29124)
-rw-r--r--var/spack/repos/builtin/packages/py-flit/package.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/py-flit/package.py b/var/spack/repos/builtin/packages/py-flit/package.py
index 78a14fcb0a..59407cfc1c 100644
--- a/var/spack/repos/builtin/packages/py-flit/package.py
+++ b/var/spack/repos/builtin/packages/py-flit/package.py
@@ -9,13 +9,18 @@ from spack import *
class PyFlit(PythonPackage):
"""Flit is a simple way to put Python packages and modules on PyPI."""
+ homepage = "https://github.com/pypa/flit"
pypi = "flit/flit-3.3.0.tar.gz"
maintainers = ['takluyver']
+ version('3.6.0', sha256='b1464e006df4df4c8eeb37671c0e0ce66e1d04e4a36d91b702f180a25fde3c11')
version('3.3.0', sha256='65fbe22aaa7f880b776b20814bd80b0afbf91d1f95b17235b608aa256325ce57')
depends_on('python@3.6:', type=('build', 'run'))
- depends_on('py-flit-core@3.3.0:', type=('build', 'run'))
+ depends_on('py-flit-core@3.6.0:3', when='@3.6.0:3.6', type=('build', 'run'))
+ depends_on('py-flit-core@3.3.0:3', when='@3.3.0:3.3', type=('build', 'run'))
depends_on('py-requests', type=('build', 'run'))
depends_on('py-docutils', type=('build', 'run'))
- depends_on('py-toml', type=('build', 'run'))
+ depends_on('py-tomli', when='@3.4:', type=('build', 'run'))
+ depends_on('py-tomli-w', when='@3.4:', type=('build', 'run'))
+ depends_on('py-toml', when='@3.3.0:3.3', type=('build', 'run'))