Skip to content

Commit eb04f11

Browse files
committed
Some small typos corrected
1 parent 51d839f commit eb04f11

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

pymathics/graph/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1494,7 +1494,7 @@ class VertexList(_PatternList):
14941494
= {10}
14951495
"""
14961496

1497-
summary_text = "list the vertex"
1497+
summary_text = "list the vertices of a graph"
14981498

14991499
def _items(self, graph):
15001500
return graph.vertices

pymathics/graph/properties.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ class PathGraphQ(_NetworkXBuiltin):
303303
304304
<dl>
305305
<dt>'LoopFreeGraphQ'[$graph$]
306-
<dd>True if $graph$ is a 'Graph' and it becomes disconected by removing \
306+
<dd>True if $graph$ is a 'Graph' and it becomes disconnected by removing \
307307
a single edge.
308308
</dl>
309309

setup.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,16 @@ def read(*rnames):
3131
name="pymathics-graph",
3232
version=__version__, # noqa
3333
packages=find_namespace_packages(include=["pymathics.*"]),
34-
install_requires=["Mathics3>5.1.0", "networkx>=2.8.0", "pydot", "matplotlib", "scipy>=1.10.0"],
34+
install_requires=[
35+
"Mathics3>5.1.0",
36+
"networkx>=2.8.0",
37+
"pydot",
38+
"matplotlib",
39+
"scipy>=1.10.0",
40+
],
3541
# don't pack Mathics in egg because of media files, etc.
3642
zip_safe=False,
37-
maintainer="Mathics Group",
43+
maintainer="Mathics3 Group",
3844
maintainer_email="[email protected]",
3945
long_description=long_description,
4046
long_description_content_type="text/x-rst",

0 commit comments

Comments
 (0)