Skip to content

Commit dd83629

Browse files
committed
Get ready for release
1 parent d38217a commit dd83629

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

pymathics/hello/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# -*- coding: utf-8 -*-
22
"""
3-
PyMathics Hello test module.
3+
Mathics3 Module hello module.
44
5-
This is an example of an external PyMathics module.
5+
This is an example of an external Mathics3 module.
66
7-
A PyMathics module is a Python module which can be loaded into Mathics using the
7+
A Mathics3 module is a Python module which can be loaded into Mathics using the
88
``LoadModule[]`` method.
99
1010
In particular, to load this after installing this module as a Python module run inside

pymathics/hello/__main__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ class Hello(Builtin):
1212
<dd>An example function in a Python-importable Mathics3 module.
1313
</dl>
1414
15-
>> PyMathics`Hello["World"]
15+
>> Hello["everyone"]
16+
= "Hello, everyone!"
1617
1718
See also the <url>
1819
:developer guide section:

pymathics/hello/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
# well as importing into Python. That's why there is no
66
# space around "=" below.
77
# fmt: off
8-
__version__="9.0.1.dev0" # noqa
8+
__version__="9.0.1" # noqa

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ requires = [
66
build-backend = "setuptools.build_meta"
77

88
[project]
9-
name = "Mathics3-hello"
9+
name = "Mathics3-Module-hello"
1010
description = 'Mathics3 Hello, World! module'
1111
dependencies = [
1212
"Mathics3-Module-Base >= 9.0.0",

0 commit comments

Comments
 (0)