py-flit-core: add v3.6.0 (#29009)

This commit is contained in:
Manuela Kuhn 2022-02-21 11:35:00 +01:00 committed by GitHub
parent 96fceb6e38
commit 94d75d0327
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,6 +13,7 @@ class PyFlitCore(PythonPackage):
pypi = "flit-core/flit_core-3.3.0.tar.gz"
maintainers = ['takluyver']
version('3.6.0', sha256='5892962ab8b8ea945835b3a288fe9dd69316f1903d5288c3f5cafdcdd04756ad')
version('3.5.1', sha256='3083720351a6cb00e0634a1ec0e26eae7b273174c3c6c03d5b597a14203b282e')
version('3.5.0', sha256='2db800d33ff41e4c6e7c1b594666cb2a11553024106655272c7245933b1d75bd')
version('3.4.0', sha256='29468fa2330969167d1f5c23eb9c0661cb6dacfcd46f361a274609a7f4197530')
@ -26,6 +27,6 @@ class PyFlitCore(PythonPackage):
depends_on('python@3.6:', when='@3.4:', type=('build', 'run'))
depends_on('python@3.4:', when='@3:', type=('build', 'run'))
depends_on('python@2.7,3.4:', type=('build', 'run'))
depends_on('py-tomli', when='@3.4:', type='run')
depends_on('py-tomli', when='@3.4:3.5', type='run')
depends_on('py-toml', when='@3.1:3.3', type='run')
depends_on('py-pytoml', when='@:3.0', type='run')