Skip to content

Commit 5d8235e

Browse files
committed
Fix code block formatting in README
1 parent ecc0480 commit 5d8235e

5 files changed

Lines changed: 20 additions & 7 deletions

File tree

.github/workflows/macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
brew install llvm
2828
python -m pip install --upgrade pip
2929
python -m pip install pytest
30-
# # Go over and comment out stuff when next Mathics core and Mathics-scanner are released
30+
# # Go over and comment out stuff when next Mathics3 core and Mathics-scanner are released
3131
# python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
3232
# git clone https://github.com/Mathics3/mathics-core
3333
# (cd mathics-core && pip3 install -e .[full])

.github/workflows/ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
sudo apt install libicu-dev
2424
python -m pip install --upgrade pip
2525
python -m pip install pytest
26-
# # Go over and comment out stuff when next Mathics core and Mathics-scanner are released
26+
# # Go over and comment out stuff when next Mathics3 core and Mathics-scanner are released
2727
# python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
2828
# git clone https://github.com/Mathics3/mathics-core
2929
# (cd mathics-core && pip3 install -e .[full])

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ pytest:
5757
pytest test $o
5858

5959

60-
# #: Make Mathics PDF manual
61-
# doc mathics.pdf: mathics/doc/tex/data
60+
# #: Make Mathics3 PDF manual
61+
# doc mathics3.pdf: mathics/doc/tex/data
6262
# (cd mathics/doc/tex && $(MAKE) mathics.pdf)
6363

6464
#: Create ChangeLog from version control without corrections

README.rst

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
1+
|Pypi Installs| |Latest Version| |Supported Python Versions|
2+
3+
Mathics3 Natural Language Toolkit module.
4+
5+
16
Mathics3 Module for ICU — International Components for Unicode
27

38
Functions that provide information from the `Python ICU library <https://pypi.org/project/pyicu/>`_.
49

510
Example Session
611
---------------
712

8-
::
13+
.. code:: mathematica
914
1015
$ mathicsscript
1116
In[1]:= LoadModule["pymathics.icu"]
@@ -34,3 +39,11 @@ Example Session
3439
3540
In[8]:= AlphabeticOrder["Papá", ""Papá", "Spanish"]
3641
Out[8]= 0
42+
43+
44+
.. |Latest Version| image:: https://badge.fury.io/py/Mathics3-Module-PyICU.svg
45+
:target: https://badge.fury.io/py/Mathics3-Module-PyICU
46+
.. |Pypi Installs| image:: https://pepy.tech/badge/Mathics3-Module-PyICU
47+
.. |Supported Python Versions| image:: https://img.shields.io/pypi/pyversions/Mathics3-Module-PyICU.svg
48+
.. |Packaging status| image:: https://repology.org/badge/vertical-allrepos/Mathics3-Module-PyICU.svg
49+
:target: https://repology.org/project/Mathics3-Module-PyICU/versions

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ build-backend = "setuptools.build_meta"
1111
name = "Mathics3-Module-PyICU"
1212
description = 'Mathics3 Module ICU - Human-Language Alphabets and Locales via PyICU'
1313
dependencies = [
14-
"Mathics3-Module-Base >= 10.0.0",
14+
"Mathics3-Module-Base >= 9.0.0",
1515
"Mathics3 >= 10.0.0",
1616
"PyICU>=2.9",
1717
]
@@ -20,7 +20,7 @@ readme = "README.rst"
2020
license = "GPL-3.0-or-later"
2121
keywords = ["Mathematica", "Wolfram", "Interpreter", "Shell", "Math", "CAS"]
2222
maintainers = [
23-
{name = "Mathics Group", email = "mathics-devel@googlegroups.com"},
23+
{name = "Mathics3 Group", email = "mathics-devel@googlegroups.com"},
2424
]
2525
classifiers = [
2626
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)