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
$ conda list | |
# packages in environment at /home/lg/.miniconda3/envs/dev-numpy: | |
# | |
# Name Version Build Channel | |
alabaster 0.7.12 py37_0 | |
asn1crypto 0.24.0 py37_0 | |
asv 0.3.1 py37hfc679d8_0 conda-forge | |
atomicwrites 1.2.1 py37_0 | |
attrs 18.2.0 py37h28b3542_0 | |
babel 2.6.0 py37_0 |
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
[ | |
{ | |
"name": "dev", | |
"version": "dev", | |
"url": "https://scikit-image.org/docs/dev/" | |
}, | |
{ | |
"name": "0.21 (stable)", | |
"version":"0.21.0", | |
"url": "https://scikit-image.org/docs/stable/", |
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
#!/usr/bin/env python | |
"""Checkout GitHub pull requests locally. | |
A small convenience script to checkout pull requests as a local branch | |
and clean up once done. | |
Inspired by git-pr [1]_ from Stéfan van der Walt. | |
.. [1] https://github.com/stefanv/git-tools/blob/10cd994c8737e5192ada06d850ecbdbe3f223e34/scripts/git-pr |