Skip to content

Commit 03b3d82

Browse files
committed
Get ready for release 9.0.0
1 parent abbdd5a commit 03b3d82

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

admin-tools/make-dist.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#!/bin/bash
2-
PACKAGE=Mathics3-Module-pyicu
2+
PACKAGE=mathics3_module_pyicu
33

44
# FIXME put some of the below in a common routine
55
function finish {
6-
cd $mathics_pyicu_owd
6+
cd $mathics3_module_pyicu_owd
77
}
88

99
cd $(dirname ${BASH_SOURCE[0]})
10-
mathics_pyicu_owd=$(pwd)
10+
mathics3_module_pyicu_owd=$(pwd)
1111
trap finish EXIT
1212

1313
if ! source ./pyenv-versions ; then
@@ -19,11 +19,11 @@ cd ..
1919
source pymathics/language/version.py
2020
echo $__version__
2121

22+
pyversion=3.13
2223
if ! pyenv local $pyversion ; then
2324
exit $?
2425
fi
2526

26-
python setup.py bdist_wheel --universal
27-
mv -v dist/pymathics_module_pyicu-${__version__}-{py2.,}py3-none-any.whl
28-
python ./setup.py sdist
27+
pip wheel --wheel-dir=dist .
28+
python -m build --sdist
2929
finish

pymathics/language/__main__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ def eval_alphabet(language_name: String) -> Optional[List[String]]:
2727

2828
py_language_name = language_name.value
2929
locale = language2locale.get(py_language_name, py_language_name)
30-
print(locale)
3130
if locale not in availableLocales:
3231
return
3332
alphabet_set = LocaleData(locale).getExemplarSet(0, 0)

0 commit comments

Comments
 (0)