- Increment the version number
1. setup.py 2. docs/conf.py 3. conda recipes - Tag an RC in github
- Create PR against the RC in the conda-forge feedstock
- Iterate with changes and new RCs in the feedstock PR
- Create a full release
- Change the conda-forge feedstock recipe to the release, squash and force-push to PR
- Once conda-forge CI is done, merge
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 hidden or 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
{ | |
"color_inactive_tabs": true, | |
"color_scheme": "Packages/Theme - Afterglow/Afterglow-monokai.tmTheme", | |
"file_exclude_patterns": | |
[ | |
"*.pyc", | |
"*.pyo", | |
"*.exe", | |
"*.dll", | |
"*.obj", |
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 hidden or 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 may be used to create an environment using: | |
# $ conda create --name <env> --file <this file> | |
# platform: win-64 | |
cycler=0.10.0=py35_0 | |
decorator=4.0.9=py35_0 | |
ipykernel=4.3.1=py35_0 | |
ipython=4.1.2=py35_0 | |
ipython_genutils=0.1.0=py35_0 | |
ipywidgets=4.1.1=py35_0 | |
jinja2=2.8=py35_0 |
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 hidden or 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
CREATE VIEW trigger_ps | |
AS | |
SELECT | |
loctype, | |
sampleloc, | |
sampledate, | |
watershed, | |
paving, | |
CASE | |
WHEN TCd > 0 AND DCd > 0 AND TSS > 0 THEN '=' |
This file contains hidden or 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 | |
from scipy import stats | |
from matplotlib import pyplot | |
import seaborn | |
def plot_norm(mu, sigma): | |
example_norm = stats.norm(mu, sigma) | |
fig, ax = pyplot.subplots() |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.