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 1
1
#! /bin/bash
2
- PACKAGE=Mathics3-Module-pyicu
2
+ PACKAGE=mathics3_module_pyicu
3
3
4
4
# FIXME put some of the below in a common routine
5
5
function finish {
6
- cd $mathics_pyicu_owd
6
+ cd $mathics3_module_pyicu_owd
7
7
}
8
8
9
9
cd $( dirname ${BASH_SOURCE[0]} )
10
- mathics_pyicu_owd =$( pwd)
10
+ mathics3_module_pyicu_owd =$( pwd)
11
11
trap finish EXIT
12
12
13
13
if ! source ./pyenv-versions ; then
@@ -19,11 +19,11 @@ cd ..
19
19
source pymathics/language/version.py
20
20
echo $__version__
21
21
22
+ pyversion=3.13
22
23
if ! pyenv local $pyversion ; then
23
24
exit $?
24
25
fi
25
26
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
29
29
finish
Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ def eval_alphabet(language_name: String) -> Optional[List[String]]:
27
27
28
28
py_language_name = language_name .value
29
29
locale = language2locale .get (py_language_name , py_language_name )
30
- print (locale )
31
30
if locale not in availableLocales :
32
31
return
33
32
alphabet_set = LocaleData (locale ).getExemplarSet (0 , 0 )
You can’t perform that action at this time.
0 commit comments