Skip to content

Commit 44395ae

Browse files
committed
Solve issues with python.
1 parent 695a799 commit 44395ae

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

source/ports/py_port/setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@
55
universal=1
66

77
[metadata]
8+
license=Apache-2.0
89
license_files=LICENSE.txt

source/ports/py_port/setup.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,6 @@
7171
'Intended Audience :: Developers',
7272
'Topic :: Software Development :: Interpreters',
7373

74-
# License
75-
'License :: OSI Approved :: Apache Software License',
76-
7774
# Python versions support
7875
#'Programming Language :: Python :: 2',
7976
#'Programming Language :: Python :: 2.6',

source/ports/py_port/upload.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ if [[ "$PYPI_VERSION" == "$PORT_VERSION" ]]; then
3030
fi
3131

3232
# Install dependencies and upload MetaCall package
33-
python3 -m pip install --user --upgrade twine setuptools wheel
33+
python3 -m pip install --user --upgrade twine setuptools wheel build
34+
python3 -m build
3435
python3 setup.py sdist bdist_wheel
3536
python3 -m twine check dist/*
3637
python3 -m twine upload dist/*

0 commit comments

Comments
 (0)