work flow
fork & PR is a efficient work flow to cooperation, let's try it:
-
fork this repo by click
Forkbutton at right top -
change remote origin to your own repo and remote upstream to this repo:
git remote set-url origin YOUR_OWN_REPO_URL git remote add upstream [email protected]:opticspy/lightpipes.git -
run
git remote -v, you will see something like this:origin [email protected]:guyskk/lightpipes.git (fetch) origin [email protected]:guyskk/lightpipes.git (push) upstream [email protected]:opticspy/lightpipes.git (fetch) upstream [email protected]:opticspy/lightpipes.git (push) -
to work on something new, create a descriptively named branch off of master, and commit/push to the new branch, when it ready for merging, open a pull request.
-
to update local branch with upstream, see here: https://help.github.com/articles/syncing-a-fork/
see also: http://scottchacon.com/2011/08/31/github-flow.html
Hi Guyskk,
Good job that conda stuff!
I have successfully created windows wheels for python 2.7, 3.4, 3.5 and 3.6 For python 3.6 I had to change the version of numpy to 1.12.0 in the requires.txt file. (With numpy==1.10.4 there was an error while building numpy for python 3.6). I have tested the wheels on my 3 windows computers (including an old 32 bits windows 7 machine)
I will do the branching.
Fred