Skip to content

Commit e41fd9b

Browse files
author
Dorian Birraux
committed
Merge branch 'master' into docs/fix-serialization
2 parents 0109de6 + c5d5440 commit e41fd9b

110 files changed

Lines changed: 166 additions & 330 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ wolframclient/tests/local_config.json
99
.coverage
1010
.vscode
1111
*.code-workspace
12-
/test-reports
12+
/test-reports
13+
.DS_Store

PacletInfo.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Paclet[
22
Name -> "WolframClientForPython",
3-
Version -> "1.1.0",
3+
Version -> "1.1.1",
44
MathematicaVersion -> "11.3+",
55
Loading -> Automatic,
66
Extensions -> {}

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
from __future__ import absolute_import, print_function, unicode_literals
42

53
import sys
@@ -28,7 +26,7 @@
2826
"Programming Language :: Python :: 3.5",
2927
"Programming Language :: Python :: 3.6",
3028
"Programming Language :: Python :: 3.7",
31-
"Topic :: Software Development :: Libraries :: Wolfram Language Library"
29+
"Topic :: Software Development :: Libraries"
3230
]
3331

3432

@@ -55,6 +53,8 @@ def load_tests():
5553
keywords=['Wolfram Language', 'Wolfram Desktop', 'Mathematica', 'parser', 'serializer', 'WXF'],
5654
author = ABOUT['__author__'],
5755
author_email = ABOUT['__author_email__'],
56+
license = 'MIT',
57+
url = 'https://www.wolfram.com/',
5858
include_package_data=True,
5959
packages=find_packages(),
6060
test_suite='setup.load_tests',
@@ -66,8 +66,9 @@ def load_tests():
6666
'requests',
6767
'aiohttp',
6868
'oauthlib',
69-
'zmq',
69+
'pyzmq',
7070
],
71+
classifiers = CLASSIFIERS,
7172
project_urls={
7273
'Source code': 'https://github.com/WolframResearch/WolframClientForPython',
7374
'Documentation': 'https://wolfr.am/wolframclientdoc',

wolframclient/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
from __future__ import absolute_import, print_function, unicode_literals
32

43
from wolframclient.about import __author__, __name__, __version__

wolframclient/__main__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
from __future__ import absolute_import, print_function, unicode_literals
42

53
from wolframclient.cli.dispatch import execute_from_command_line as main

wolframclient/about.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
# -*- coding: utf-8 -*-
2-
31
from __future__ import absolute_import, print_function, unicode_literals
42

53
__name__ = "wolframclient"
64
__description__ = "A Python library with various tools to interact with the Wolfram Language and the Wolfram Cloud."
7-
__version__ = "1.1.0"
5+
__version__ = "1.1.1"
86
__author__ = "Wolfram Research"
97
__author_email__ = "support@wolfram.com, dorianb@wolfram.com, riccardod@wolfram.com"

wolframclient/cli/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
# -*- coding: utf-8 -*-
21
from __future__ import absolute_import, print_function, unicode_literals
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
# -*- coding: utf-8 -*-
21
from __future__ import absolute_import, print_function, unicode_literals

wolframclient/cli/commands/benchmark.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
from __future__ import absolute_import, print_function, unicode_literals
42

53
import cProfile

wolframclient/cli/commands/refactor.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
from __future__ import absolute_import, print_function, unicode_literals
42

53
import sys

0 commit comments

Comments
 (0)