mirror of
https://github.com/titanscouting/tra-superscript.git
synced 2024-11-10 06:54:45 +00:00
fixed build script,
added binutils to docker container for build requirements, added required scipy modules to superscript.spec Former-commit-id: 60a6fc1106dc90514bd1270138ab9166efa29290
This commit is contained in:
parent
21d92e65b2
commit
d7ed695ad1
@ -1,6 +1,6 @@
|
|||||||
FROM python:slim
|
FROM python:slim
|
||||||
WORKDIR /
|
WORKDIR /
|
||||||
RUN apt-get -y update; apt-get -y upgrade
|
RUN apt-get -y update; apt-get -y upgrade
|
||||||
RUN apt-get -y install git
|
RUN apt-get -y install git binutils
|
||||||
COPY requirements.txt .
|
COPY requirements.txt .
|
||||||
RUN pip install -r requirements.txt
|
RUN pip install -r requirements.txt
|
@ -1,4 +1,4 @@
|
|||||||
set pathtospec="../src/cli/superscript.spec"
|
set pathtospec="../src/superscript.spec"
|
||||||
set pathtodist="../dist/"
|
set pathtodist="../dist/"
|
||||||
set pathtowork="temp/"
|
set pathtowork="temp/"
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
pathtospec="../src/cli/superscript.spec"
|
pathtospec="../src/superscript.spec"
|
||||||
pathtodist="../dist/"
|
pathtodist="../dist/"
|
||||||
pathtowork="temp/"
|
pathtowork="temp/"
|
||||||
|
|
||||||
|
@ -9,13 +9,15 @@ a = Analysis(['superscript.py'],
|
|||||||
hiddenimports=[
|
hiddenimports=[
|
||||||
"dnspython",
|
"dnspython",
|
||||||
"sklearn.utils._weight_vector",
|
"sklearn.utils._weight_vector",
|
||||||
|
"sklearn.utils._typedefs",
|
||||||
|
"sklearn.neighbors._partition_nodes",
|
||||||
"requests",
|
"requests",
|
||||||
],
|
],
|
||||||
hookspath=[],
|
hookspath=[],
|
||||||
runtime_hooks=[],
|
runtime_hooks=[],
|
||||||
excludes=[
|
excludes=[
|
||||||
"matplotlib",
|
"matplotlib",
|
||||||
"pandas"
|
#"pandas"
|
||||||
],
|
],
|
||||||
win_no_prefer_redirects=False,
|
win_no_prefer_redirects=False,
|
||||||
win_private_assemblies=False,
|
win_private_assemblies=False,
|
||||||
|
Loading…
Reference in New Issue
Block a user