Skip to content

Commit e3b64a6

Browse files
committed
Update pytest dependencies to avoid importlib-metadata
It doesn't work with python 3.8 and it's not needed there anymore
1 parent 6c05767 commit e3b64a6

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

graalpython/lib-graalpython/modules/ginstall.py

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -112,14 +112,13 @@ def known_packages():
112112
@pip_package()
113113
def pytest(**kwargs):
114114
wcwidth(**kwargs)
115-
importlib_metadata(**kwargs)
116115
pluggy(**kwargs)
117116
atomicwrites(**kwargs)
118117
more_itertools(**kwargs)
119118
attrs(**kwargs)
120119
packaging(**kwargs)
121120
py(**kwargs)
122-
install_from_pypi("pytest==5.0.1", **kwargs)
121+
install_from_pypi("pytest==5.1.0", **kwargs)
123122

124123
@pip_package()
125124
def pytest_parallel(**kwargs):
@@ -156,19 +155,13 @@ def atomicwrites(**kwargs):
156155
@pip_package()
157156
def pluggy(**kwargs):
158157
zipp(**kwargs)
159-
importlib_metadata(**kwargs)
160-
install_from_pypi("pluggy==0.12.0", **kwargs)
158+
install_from_pypi("pluggy==0.13.1", **kwargs)
161159

162160
@pip_package()
163161
def zipp(**kwargs):
164162
setuptools_scm(**kwargs)
165163
install_from_pypi("zipp==0.5.0", **kwargs)
166164

167-
@pip_package()
168-
def importlib_metadata(**kwargs):
169-
zipp(**kwargs)
170-
install_from_pypi("importlib-metadata==0.19", **kwargs)
171-
172165
@pip_package()
173166
def wcwidth(**kwargs):
174167
six(**kwargs)

0 commit comments

Comments
 (0)