diff options
author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2021-10-11 13:07:58 +0200 |
---|---|---|
committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2021-10-11 13:20:33 +0200 |
commit | 00ea72c8b0ac4b2eaddbda7d2f34040bc496582c (patch) | |
tree | b144ba2ceccd7289e7c0ecc3828f259dd891f41a /python | |
parent | 4a0b1791c4f840f4689790f8707d751d65176138 (diff) | |
download | astra-00ea72c8b0ac4b2eaddbda7d2f34040bc496582c.tar.gz astra-00ea72c8b0ac4b2eaddbda7d2f34040bc496582c.tar.bz2 astra-00ea72c8b0ac4b2eaddbda7d2f34040bc496582c.tar.xz astra-00ea72c8b0ac4b2eaddbda7d2f34040bc496582c.zip |
Add brief conda build instructions for win64
Diffstat (limited to 'python')
-rw-r--r-- | python/conda/README.txt | 14 | ||||
-rw-r--r-- | python/conda/astra-toolbox/win64_build_config.yaml | 11 | ||||
-rw-r--r-- | python/conda/libastra/win64_build_config.yaml | 2 |
3 files changed, 27 insertions, 0 deletions
diff --git a/python/conda/README.txt b/python/conda/README.txt new file mode 100644 index 0000000..cd0bf5a --- /dev/null +++ b/python/conda/README.txt @@ -0,0 +1,14 @@ +Building conda packages: + +Linux: + +start docker +linux_release/release.sh + +Windows: + +Open anaconda command prompt +call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" amd64 8.1 -vcvars_ver=14.0 +Change to astra-toolbox\python\conda directory +conda build -m libastra\win64_build_config.yaml libastra +conda build -m astra-toolbox\win64_build_config.yaml astra-toolbox diff --git a/python/conda/astra-toolbox/win64_build_config.yaml b/python/conda/astra-toolbox/win64_build_config.yaml new file mode 100644 index 0000000..36ca0ce --- /dev/null +++ b/python/conda/astra-toolbox/win64_build_config.yaml @@ -0,0 +1,11 @@ +python: + - 3.7 + - 3.8 + - 3.9 +numpy: + - 1.11 + - 1.11 + - 1.16 +zip_keys: + - python + - numpy
\ No newline at end of file diff --git a/python/conda/libastra/win64_build_config.yaml b/python/conda/libastra/win64_build_config.yaml new file mode 100644 index 0000000..cb6373a --- /dev/null +++ b/python/conda/libastra/win64_build_config.yaml @@ -0,0 +1,2 @@ +python: + - 3.9 |