Sergio Rey
Sergio Rey
Testing locally, example ``` jupyter nbconvert --to=html --ExecutePreprocessor.enabled=True choropleth_classification.ipynb ``` Should generate: ``` [NbConvertApp] Converting notebook choropleth_classification.ipynb to html [NbConvertApp] Executing notebook with kernel: python2 [NbConvertApp] Writing 453224 bytes to...
Working example of local tests [here](https://github.com/sjsrey/geopyter/blob/master/atoms/visualization/test_nb.py). * Need to move into travis for automated testing * recurse through all atoms directories to collect tests
@martinfleis should we merge this?
xref https://github.com/pysal/libpysal/issues/734
To avoid conflicts in the changelog, we might add a `digest` directory in the repo. In there we add a digest entry for each PR that we want to highlight...
At the [Jan-23 dev meeting](https://hackmd.io/_ufiyW6BQfaso2U1TcsuFw?both), we decided to drop the digest idea and instead keep the `## [Unlreased]` heading. The latter will contain entries that come with Pull Requests that...
It would be great to standardize the changelogs across all pysal packages. Building on the work @jGaboardi has done with [ghactions]( https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes), I think we can come up with a...
We can add labels to already merged PRs, so this could be done now with an eye towards the meta release and aggregating across the packages.
Perhaps the new effort out of the scientific-python [changelist](https://github.com/scientific-python/changelist) is what we should use instead of rolling our own?
A possible fix is to change cell 1 of `tools/gitcount.ipynb` from: ``` from subprocess import Popen, PIPE x, err = Popen( 'git log -1 --tags --simplify-by-decoration --pretty="%ai"| cat', stdin=PIPE, stdout=PIPE,...