flit: remove dependency from development branch version (#28789)

This commit is contained in:
Michael Bentley 2022-02-07 18:35:18 -07:00 committed by GitHub
parent 457fe842f0
commit e97bffc3e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,7 +13,6 @@ class Flit(MakefilePackage):
compiler code generation, hardware and execution environments.""" compiler code generation, hardware and execution environments."""
homepage = "https://pruners.github.io/flit" homepage = "https://pruners.github.io/flit"
url = "https://github.com/PRUNERS/FLiT"
url = "https://github.com/PRUNERS/FLiT/archive/v2.1.0.tar.gz" url = "https://github.com/PRUNERS/FLiT/archive/v2.1.0.tar.gz"
git = "https://github.com/PRUNERS/FLiT.git" git = "https://github.com/PRUNERS/FLiT.git"
@ -27,7 +26,7 @@ class Flit(MakefilePackage):
# Add dependencies # Add dependencies
depends_on('python@3:', type='run') depends_on('python@3:', type='run')
depends_on('py-toml', type='run') depends_on('py-toml', type='run')
depends_on('py-pyelftools', type='run') depends_on('py-pyelftools', type='run', when='@:2.1.0')
depends_on('gmake', type=('run', 'build')) depends_on('gmake', type=('run', 'build'))
depends_on('sqlite@3:', type='run') depends_on('sqlite@3:', type='run')