File tree Expand file tree Collapse file tree 9 files changed +68
-6
lines changed Expand file tree Collapse file tree 9 files changed +68
-6
lines changed Original file line number Diff line number Diff line change
1
+ " %PYTHON% " setup.py build --compiler=mingw32 install --record=record.txt
2
+ if errorlevel 1 exit 1
Original file line number Diff line number Diff line change
1
+ $PYTHON setup.py install --record=record.txt
Original file line number Diff line number Diff line change
1
+ # build instructions for Anaconda 5.1
2
+
3
+ Open an anaconda prompt
4
+
5
+ cd to conda build files
6
+
7
+ Optional: update build version and SVN information in meta.yaml
8
+ conda update conda-build
9
+
10
+ Run to build (note the upload command path e.g. anaconda upload C:\Anaconda\conda-bld\win-64\pysces-0.9.6-py27_2.tar.bz2):
11
+ conda build -c sbmlteam .
12
+
13
+ NOTES:
14
+ * Under linux/mac remove the libpython build dependency (it does not exist)
15
+
16
+ (C) Brett 2018
Original file line number Diff line number Diff line change
1
+ package :
2
+ name : pysces
3
+ version : " 0.9.6"
4
+
5
+ source :
6
+ git_url : https://github.com/PySCeS/pysces.git
7
+
8
+ build :
9
+ number : 2
10
+ include_recipe : True
11
+
12
+ requirements :
13
+ build :
14
+ - python
15
+ - setuptools
16
+ - numpy>=1.14
17
+ - libpython
18
+ run :
19
+ - python
20
+ - numpy
21
+ - python-libsbml
22
+ - scipy
23
+ - matplotlib
24
+ - nose
25
+
26
+
27
+ about :
28
+ home : http://pysces.sourceforge.net
29
+ license : BSD
30
+ licence_file : LICENSE.txt
31
+ summary : Python Simulator for Cellular Systems
32
+
33
+ extra :
34
+ maintainers :
35
+ - Brett G. Olivier
Original file line number Diff line number Diff line change @@ -9,12 +9,7 @@ Optional: update build version and SVN information in meta.yaml
9
9
Run to build (note the upload command path e.g. anaconda upload C:\Anaconda\conda-bld\win-64\pysces-0.9.5-py27hd5793fb_1.tar.bz2):
10
10
conda build -c sbmlteam .
11
11
12
- Run to install locally:
13
- conda install --use-local pysces
14
-
15
12
NOTES:
16
- * To get this to compile under windows requires one to copy python27.dll into the lib directory while the environment is being created.
17
- otherwise the build fails.
18
13
* Under linux/mac remove the libpython build dependency (it does not exist)
19
14
20
15
(C) Brett 2017
Original file line number Diff line number Diff line change 1
1
package :
2
2
name : pysces
3
- version : " 0.9.5 "
3
+ version : " 0.9.6 "
4
4
5
5
source :
6
6
git_url : https://github.com/PySCeS/pysces.git
Original file line number Diff line number Diff line change
1
+ # Create export library
2
+
3
+ If F2Py is failing to find an msvcr90.dll
4
+
5
+ cd <workdir >
6
+ copy C:\WINDOWS\winsxs\amd64_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.1_none_99b61f5e8371c1d4\msvcr90.dll .
7
+
8
+
9
+ gendef.exe msvcr90.dll
10
+
11
+ dlltool.exe -D msvcr90.dll -l libmsvcr90.a -d msvcr90.def
12
+
13
+ copy libmsvcr90.a MINGW64_PATH\lib
You can’t perform that action at this time.
0 commit comments