-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add threadsafe to the pyf interfaces. i guess that is ok?
- Loading branch information
1 parent
f6530aa
commit 50b5cb3
Showing
10 changed files
with
40 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,7 @@ | |
.DS_Store | ||
/results.txt | ||
/env | ||
/build-python | ||
|
||
# python | ||
__pycache__ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#!/bin/bash | ||
|
||
# | ||
# basic script to build a conda environment, build the python extension, and test it | ||
# | ||
|
||
rm -rf ./env | ||
conda env create --prefix ./env -f ./python/environment.yml | ||
conda activate ./env | ||
|
||
cd python | ||
chmod +x ./build_python.sh | ||
./build_python.sh | ||
cd .. | ||
|
||
rm -rf ./build-python | ||
mkdir ./build-python | ||
mkdir ./build-python/radbeltpy | ||
|
||
cp ./python/*.py ./build-python/radbeltpy | ||
cp ./python/*.so ./build-python/radbeltpy | ||
cp ./python/*.dll ./build-python/radbeltpy | ||
cp ./python/*.dylib ./build-python/radbeltpy | ||
cp -r data ./build-python/radbeltpy | ||
|
||
|
||
python ./test/radbeltpy_test.py |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters