Skip to content

Commit 728a763

Browse files
committed
Add package 'hypothesis' to ginstall
1 parent d463043 commit 728a763

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

graalpython/lib-graalpython/modules/ginstall.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def py(**kwargs):
131131
@pip_package()
132132
def attrs(**kwargs):
133133

134-
install_from_pypi("attrs==19.1.0", **kwargs)
134+
install_from_pypi("attrs==19.2.0", **kwargs)
135135

136136
@pip_package()
137137
def pyparsing(**kwargs):
@@ -231,6 +231,17 @@ def h5py(**kwargs):
231231
Cython(**kwargs)
232232
install_from_pypi("h5py==2.10.0", **kwargs)
233233

234+
@pip_package()
235+
def sortedcontainers(**kwargs):
236+
install_from_pypi("sortedcontainers==2.1.0", **kwargs)
237+
238+
@pip_package()
239+
def hypothesis(**kwargs):
240+
setuptools(**kwargs)
241+
attrs(**kwargs)
242+
sortedcontainers(**kwargs)
243+
install_from_pypi("hypothesis==5.41.1", **kwargs)
244+
234245
# Does not yet work
235246
# def h5py(**kwargs):
236247
# try:

0 commit comments

Comments
 (0)