Skip to content

Commit 46847db

Browse files
committed
Updated version of py-eventlet in spack repo as the previous version is not compatible with newer Python versions
Removed py-dnspython package from repo as it both doesn't work with newer Python versions and is superceded by a version in spack's own repo
1 parent d5495a1 commit 46847db

2 files changed

Lines changed: 11 additions & 47 deletions

File tree

spack/repo/chimbuko/packages/py-dnspython/package.py

Lines changed: 0 additions & 41 deletions
This file was deleted.

spack/repo/chimbuko/packages/py-eventlet/package.py

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,16 @@ class PyEventlet(PythonPackage):
1010
"""Concurrent networking library for Python. Override builtin with more recent version"""
1111

1212
homepage = "https://github.com/eventlet/eventlet"
13-
url = "https://github.com/eventlet/eventlet/archive/v0.30.0.tar.gz"
14-
15-
version('0.30.0', sha256='20612435e2a4d35f41fc2af5d4c902410fab9d59da833de942188b12c52b51f7')
16-
13+
url = "https://github.com/eventlet/eventlet/archive/refs/tags/0.36.1.tar.gz"
14+
git = "https://github.com/eventlet/eventlet"
15+
16+
#version('0.36.1', sha256='d0c598ad3886c65a78452367cb25c37196d562588292bbdb82444eaaec14c2ea')
17+
#version('0.30.0', sha256='20612435e2a4d35f41fc2af5d4c902410fab9d59da833de942188b12c52b51f7')
18+
version('0.36.1',tag='0.36.1')
19+
1720
depends_on('py-setuptools', type='build')
18-
depends_on('py-greenlet@0.3:')
19-
depends_on('py-dnspython@1.15.0:1.16.0', type=('build', 'run') )
21+
depends_on('py-greenlet@1.0:')
22+
depends_on('py-dnspython@1.15.0:', type=('build', 'run') )
2023
depends_on('py-monotonic@1.4:', type=('build', 'run'), when='^python@:3.5')
24+
depends_on('py-hatchling', type='build')
25+
depends_on('py-hatch-vcs', type='build')

0 commit comments

Comments
 (0)