Skip to content

Commit b21a3ac

Browse files
committed
Go over packaging
1 parent 9282e0f commit b21a3ac

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
*~
22
/.python-version
33
/ChangeLog
4+
/ChangeLog-spell-corrected
45
/ChangeLog.orig
56
/ChangeLog.rej
67
/build

MANIFEST.in

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
include README.rst
2+
include CHANGES.rst
3+
include ChangeLog
4+
include LICENSE
5+
include Makefile
6+
include requirements-cython.txt
7+
include requirements-dev.txt
8+
include requirements-full.txt
9+
include mathics/doc/latex/mathics.pdf
10+
recursive-include mathics *.py
11+
recursive-include mathics/autoload *
12+
recursive-include mathics/data *
13+
recursive-include test *.py *.m *.wl

admin-tools/make-dist.sh

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,10 @@ cd ..
1919
source pymathics/natlang/version.py
2020
echo $__version__
2121

22-
pyversion=3.11
22+
pyversion=3.12
2323
if ! pyenv local $pyversion ; then
2424
exit $?
2525
fi
2626

27-
python setup.py bdist_wheel --universal
28-
mv -v dist/${PACKAGE}-${__version__}-{py2.,}py3-none-any.whl
29-
python ./setup.py sdist
27+
python -m build
3028
finish

0 commit comments

Comments
 (0)