3.1.1
This commit is contained in:
parent
20d9c08e4e
commit
37a3c8f0d5
2
Utils.py
2
Utils.py
|
@ -6,7 +6,7 @@ def tuplize_version(version: str) -> typing.Tuple[int, ...]:
|
||||||
return tuple(int(piece, 10) for piece in version.split("."))
|
return tuple(int(piece, 10) for piece in version.split("."))
|
||||||
|
|
||||||
|
|
||||||
__version__ = "3.1.0"
|
__version__ = "3.1.1"
|
||||||
_version_tuple = tuplize_version(__version__)
|
_version_tuple = tuplize_version(__version__)
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
|
3
setup.py
3
setup.py
|
@ -79,7 +79,8 @@ cx_Freeze.setup(
|
||||||
options={
|
options={
|
||||||
"build_exe": {
|
"build_exe": {
|
||||||
"includes": [],
|
"includes": [],
|
||||||
"excludes": ["numpy", "Cython"],
|
"excludes": ["numpy", "Cython", "PySide2", "PIL",
|
||||||
|
"pandas"],
|
||||||
"zip_include_packages": ["*"],
|
"zip_include_packages": ["*"],
|
||||||
"zip_exclude_packages": [],
|
"zip_exclude_packages": [],
|
||||||
"include_files": [],
|
"include_files": [],
|
||||||
|
|
Loading…
Reference in New Issue