Skip to content

Commit 2dc8f6d

Browse files
committed
Merge branch 'master' of github.com:PySCeS/pysces
2 parents c91fed4 + ec34605 commit 2dc8f6d

File tree

9 files changed

+68
-6
lines changed

9 files changed

+68
-6
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
"%PYTHON%" setup.py build --compiler=mingw32 install --record=record.txt
2+
if errorlevel 1 exit 1
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
$PYTHON setup.py install --record=record.txt
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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

packaging/conda/conda_build.txt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,7 @@ Optional: update build version and SVN information in meta.yaml
99
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):
1010
conda build -c sbmlteam .
1111

12-
Run to install locally:
13-
conda install --use-local pysces
14-
1512
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.
1813
* Under linux/mac remove the libpython build dependency (it does not exist)
1914

2015
(C) Brett 2017

packaging/conda/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package:
22
name: pysces
3-
version: "0.9.5"
3+
version: "0.9.6"
44

55
source:
66
git_url: https://github.com/PySCeS/pysces.git
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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

packaging/windows_libs/dlltool.exe

1.07 MB
Binary file not shown.

packaging/windows_libs/gendef.exe

54.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)