- 00_references
- 01_raw-data
- 02_prepared-data
- 20160925
- 20171101
- latest
- 03_results
- 20160926
- 20171101
- 20171102
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
template = """\ | |
{ | |
"version": "0.1.0", | |
"isShellCommand": false, | |
"args": [], | |
"showOutput": "always", | |
"echoCommand": false, | |
"suppressTaskName": false, | |
"tasks": [ | |
{ |
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
import numpy | |
def _dedenter(func): | |
""" dedents any string returned by a function. """ | |
@wraps(func) | |
def wrapper(*args, **kwargs): | |
string = func(*args, **kwargs) | |
return dedent(string) | |
return wrapper | |
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
$ conda build dev --no-anaconda-upload --channel=conda-forge --channel=phobson/label/dev --python=3.6 | |
$ conda convert osx-64/pybmpdb-0.2.x-py3* -p all | |
$ anaconda upload ./*/pybmpdb-0.2.x-py3* --label=dev |
NewerOlder