Skip to content

Commit bd6a2d4

Browse files
committed
Track changes in mathics-core
setup.py: We need at least Python 3.8 .editorconfig: remove duplicate config line __init__.py: add just in case test_summary_text.py: import location has moved
1 parent 4824f84 commit bd6a2d4

File tree

4 files changed

+7
-9
lines changed

4 files changed

+7
-9
lines changed

.editorconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ root = true
55

66
[*]
77
end_of_line = lf
8-
insert_final_newline = true
98
charset = utf-8
109
indent_style = tab
1110
indent_size = 4

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
|Pypi Installs| |Latest Version| |Supported Python Versions|
22

3-
`Mathics <https://mathics.org>`_ Graph Module using `NetworkX <https://networkx.org/>`_ and `Matplotlib <https://matplotlib.org>`_
3+
`Mathics3 <https://mathics.org>`_ Graph Module using `NetworkX <https://networkx.org/>`_ and `Matplotlib <https://matplotlib.org>`_
44

55
Example Session
66
---------------

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
from setuptools import setup, find_namespace_packages
88

99
# Ensure user has the correct Python version
10-
if sys.version_info < (3, 7):
11-
print("Mathics support Python 3.7 and above; you have %d.%d" % sys.version_info[:2])
10+
if sys.version_info < (3, 8):
11+
print("Mathics support Python 3.8 and above; you have %d.%d" % sys.version_info[:2])
1212
sys.exit(-1)
1313

1414

@@ -28,11 +28,11 @@ def read(*rnames):
2828
is_PyPy = platform.python_implementation() == "PyPy"
2929

3030
setup(
31-
name="pymathics-graph",
31+
name="Mathics3-graph",
3232
version=__version__, # noqa
3333
packages=find_namespace_packages(include=["pymathics.*"]),
3434
install_requires=[
35-
"Mathics3>=7.0.0dev",
35+
"Mathics3>=7.0.0.dev0",
3636
"networkx>=3.0.0",
3737
"pydot",
3838
"matplotlib",
@@ -50,10 +50,10 @@ def read(*rnames):
5050
"Intended Audience :: Science/Research",
5151
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
5252
"Programming Language :: Python",
53-
"Programming Language :: Python :: 3.7",
5453
"Programming Language :: Python :: 3.8",
5554
"Programming Language :: Python :: 3.9",
5655
"Programming Language :: Python :: 3.10",
56+
"Programming Language :: Python :: 3.11",
5757
"Programming Language :: Python :: Implementation :: CPython",
5858
"Programming Language :: Python :: Implementation :: PyPy",
5959
"Topic :: Scientific/Engineering",

test/consistency-and-style/test_summary_text.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@
1010

1111
from mathics.core.builtin import Builtin
1212
from mathics.core.load_builtin import name_is_builtin_symbol
13-
from mathics.doc.common_doc import skip_doc
14-
13+
from mathics.doc.gather import skip_doc
1514

1615
# Get file system path name for mathics.builtin
1716
module_path = osp.dirname(module_initfile_path)

0 commit comments

Comments
 (0)