-
-
Notifications
You must be signed in to change notification settings - Fork 403
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added conda.recipe directory (#2435)
- Loading branch information
1 parent
fc6f253
commit 723e73e
Showing
4 changed files
with
18 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
## Release Procedure | ||
|
||
- Ensure all tests pass. | ||
|
||
- Tag commit a PEP440 style tag (starting with the prefix 'v') and push to github | ||
|
||
```bash | ||
git tag -a vx.x.x -m 'Version x.x.x' | ||
git push --tags | ||
``` | ||
|
||
Example tags might include v1.9.3 v1.10.0a1 or v1.11.3b3 | ||
|
||
- Build conda packages |
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,2 @@ | ||
#!/bin/bash | ||
$PYTHON setup.py --quiet install --single-version-externally-managed --record=record.txt |
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ package: | |
version: {{ sdata['version'] }} | ||
|
||
source: | ||
path: . | ||
path: .. | ||
|
||
extra: | ||
channels: | ||
|
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