File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 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
55function finish {
6- cd $mathics_pyicu_owd
6+ cd $mathics3_module_pyicu_owd
77}
88
99cd $( dirname ${BASH_SOURCE[0]} )
10- mathics_pyicu_owd =$( pwd)
10+ mathics3_module_pyicu_owd =$( pwd)
1111trap finish EXIT
1212
1313if ! source ./pyenv-versions ; then
@@ -19,11 +19,11 @@ cd ..
1919source pymathics/language/version.py
2020echo $__version__
2121
22+ pyversion=3.13
2223if ! pyenv local $pyversion ; then
2324 exit $?
2425fi
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
2929finish
Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments