Skip to content

Commit 197241a

Browse files
authored
chore: update MANIFEST.in (#46)
1 parent 7396118 commit 197241a

File tree

5 files changed

+7
-358
lines changed

5 files changed

+7
-358
lines changed

MANIFEST.in

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1-
include README.rst
1+
include README.md
22
include LICENSE
3+
include CMakeList.txt
34
recursive-include skscope *
5+
recursive-include pybind11 *
6+
recursive-include src *
7+
recursive-include include *

include/nlopt.h

-349
This file was deleted.

pyproject.toml

-5
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,6 @@ before-test = "pip install pandas"
1515
test-command = "pytest {package}/pytest"
1616
# Disable building PyPy wheels on all platforms
1717
skip = "pp* *-musllinux_*"
18-
19-
# skip cp310-win32 because scipy.whl file not exists in pypi:
20-
# skip cp37-manylinux_i686 cp38-manylinux_i686 cp39-manylinux_i686 cp310-manylinux_i686 because tests fail but no informative message return
21-
# test-skip = "*-macosx_arm64 *-macosx_universal2:arm64 cp310-win32 cp37-manylinux_i686 cp38-manylinux_i686 cp39-manylinux_i686 cp310-manylinux_i686"
22-
2318
# cp39-win32: scipy install fail
2419
test-skip = "*-win32 *-manylinux_i686"
2520

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -171,10 +171,9 @@ def build_extension(self, ext):
171171
"Operating System :: POSIX :: Linux",
172172
"Operating System :: MacOS",
173173
"Programming Language :: Python",
174-
"Programming Language :: Python :: 3.7",
175-
"Programming Language :: Python :: 3.8",
176174
"Programming Language :: Python :: 3.9",
177175
"Programming Language :: Python :: 3.10",
176+
"Programming Language :: Python :: 3.11",
178177
],
179178
## there is no wheel version available for nlopt with python 3.11 now
180179
python_requires='>=3.9',

skscope/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# @Site :
66
# @File : __init__.py
77

8-
__version__ = "0.1.0"
8+
__version__ = "0.1.1"
99
__author__ = "Zezhi Wang, Jin Zhu," "Peng Chen," "Junxian Zhu, Xueqin Wang"
1010

1111

0 commit comments

Comments
 (0)