Skip to content

Commit f4709eb

Browse files
committed
Merge pull request #240 in LCL/wolframclientforpython from feature/python-array to master
* commit '5b0a4059f18514d3756a1312de7776d4b876f202': updating pillow adding more tests for shape and len adding test for generators array might have been a generator
2 parents c88e5bf + 5b0a405 commit f4709eb

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

wolframclient/cli/commands/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def dependencies():
1616

1717
if not six.JYTHON:
1818
yield ("numpy", not six.PY2 and "1.15.3" or None)
19-
yield ("pillow", "5.3.0")
19+
yield ("pillow", "7.1.2")
2020
yield ("requests", "2.20.0")
2121
yield ("oauthlib", "2.1.0")
2222
yield ("pyzmq", "17.1.2")

wolframclient/language/array.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ def _valid_type_or_fail(self, type):
3737
def tobytes(self):
3838
return pack(self.struct.format[1], *self.array)
3939

40-
4140
def __getitem__(self, k):
4241
return self.array[k]
4342

0 commit comments

Comments
 (0)