From b752d586ce252ac571b09fb76a513c893649fa24 Mon Sep 17 00:00:00 2001 From: Nicholas Bollweg Date: Sun, 12 Jan 2020 01:29:22 -0500 Subject: [PATCH 1/4] bump to 6.0.2, update metadata, add @bollwyvl to maintainers --- recipe/meta.yaml | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 3f0f947..491c7a5 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -1,4 +1,4 @@ -{% set version = "6.0.1" %} +{% set version = "6.0.2" %} package: name: notebook @@ -6,7 +6,7 @@ package: source: url: https://pypi.io/packages/source/n/notebook/notebook-{{ version }}.tar.gz - sha256: 660976fe4fe45c7aa55e04bf4bccb9f9566749ff637e9020af3422f9921f9a5d + sha256: 399a4411e171170173344761e7fd4491a3625659881f76ce47c50231ed714d9b build: script: @@ -28,8 +28,8 @@ requirements: - ipykernel - ipython_genutils - jinja2 - - jupyter_core >=4.4.0 - - jupyter_client >=5.3.1 + - jupyter_core >=4.6.0 + - jupyter_client >=5.3.4 - nbconvert - nbformat - python @@ -50,10 +50,14 @@ test: - notebook about: - home: http://jupyter.org - license: BSD 3-clause - license_file: COPYING.md + home: https://jupyter.org + license: BSD-3-Clause + license_family: BSD + license_file: LICENSE summary: A web-based notebook environment for interactive computing + dev_url: https://github.com/jupyter/notebook + doc_url: https://jupyter-notebook.readthedocs.io + doc_source_url: https://github.com/jupyter/notebook/tree/master/docs extra: recipe-maintainers: @@ -64,3 +68,4 @@ extra: - gnestor - takluyver - lresende + - bollwyvl From 34cbcde27f3ef4eec6636342ecc1a13da27638e3 Mon Sep 17 00:00:00 2001 From: Nicholas Bollweg Date: Sun, 12 Jan 2020 01:29:55 -0500 Subject: [PATCH 2/4] MNT: Re-rendered with conda-build 3.18.11, conda-smithy 3.6.5, and conda-forge-pinning 2020.01.10 --- .gitattributes | 1 + .github/CODEOWNERS | 2 +- .travis.yml | 9 ++++++--- README.md | 12 +++++++----- 4 files changed, 15 insertions(+), 9 deletions(-) diff --git a/.gitattributes b/.gitattributes index 86ff937..ac943c1 100644 --- a/.gitattributes +++ b/.gitattributes @@ -17,6 +17,7 @@ bld.bat text eol=crlf .gitattributes linguist-generated=true .gitignore linguist-generated=true .travis.yml linguist-generated=true +.scripts linguist-generated=true LICENSE.txt linguist-generated=true README.md linguist-generated=true azure-pipelines.yml linguist-generated=true diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index a9c95e9..48311e2 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1 @@ -* @SylvainCorlay @gnestor @jakirkham @minrk @pelson @takluyver \ No newline at end of file +* @SylvainCorlay @bollwyvl @gnestor @jakirkham @lresende @minrk @pelson @takluyver \ No newline at end of file diff --git a/.travis.yml b/.travis.yml index 090d469..79642a7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,13 +11,16 @@ env: matrix: include: - env: CONFIG=linux_ppc64le_python3.6 UPLOAD_PACKAGES=True PLATFORM=linux-ppc64le DOCKER_IMAGE=condaforge/linux-anvil-ppc64le - os: linux-ppc64le + os: linux + arch: ppc64le - env: CONFIG=linux_ppc64le_python3.7 UPLOAD_PACKAGES=True PLATFORM=linux-ppc64le DOCKER_IMAGE=condaforge/linux-anvil-ppc64le - os: linux-ppc64le + os: linux + arch: ppc64le - env: CONFIG=linux_ppc64le_python3.8 UPLOAD_PACKAGES=True PLATFORM=linux-ppc64le DOCKER_IMAGE=condaforge/linux-anvil-ppc64le - os: linux-ppc64le + os: linux + arch: ppc64le script: - export CI=travis diff --git a/README.md b/README.md index 1abf3e7..b3adc5c 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ About notebook ============== -Home: http://jupyter.org +Home: https://jupyter.org -Package license: BSD 3-clause +Package license: BSD-3-Clause Feedstock license: BSD 3-Clause @@ -18,8 +18,8 @@ Current build status @@ -198,7 +198,7 @@ A feedstock is made up of a conda recipe (the instructions on what and how to bu the package) and the necessary configurations for automatic building using freely available continuous integration services. Thanks to the awesome service provided by [CircleCI](https://circleci.com/), [AppVeyor](https://www.appveyor.com/) -and [TravisCI](https://travis-ci.org/) it is possible to build and upload installable +and [TravisCI](https://travis-ci.com/) it is possible to build and upload installable packages to the [conda-forge](https://anaconda.org/conda-forge) [Anaconda-Cloud](https://anaconda.org/) channel for Linux, Windows and OSX respectively. @@ -248,8 +248,10 @@ Feedstock Maintainers ===================== * [@SylvainCorlay](https://github.com/SylvainCorlay/) +* [@bollwyvl](https://github.com/bollwyvl/) * [@gnestor](https://github.com/gnestor/) * [@jakirkham](https://github.com/jakirkham/) +* [@lresende](https://github.com/lresende/) * [@minrk](https://github.com/minrk/) * [@pelson](https://github.com/pelson/) * [@takluyver](https://github.com/takluyver/) From d7b47ed170d126d20f9bbd482b3d5a8d49771dfc Mon Sep 17 00:00:00 2001 From: Nicholas Bollweg Date: Wed, 15 Jan 2020 01:24:45 -0500 Subject: [PATCH 3/4] add pip check in test to catch future version changes --- recipe/meta.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 491c7a5..48a2b19 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -41,7 +41,10 @@ requirements: - prometheus_client test: + requires: + - pip commands: + - pip check - jupyter notebook -h - jupyter nbextension -h - jupyter serverextension -h From 2522e22e1506cae5d95a75bdf701b9a0fbeced15 Mon Sep 17 00:00:00 2001 From: Nicholas Bollweg Date: Wed, 15 Jan 2020 09:33:56 -0500 Subject: [PATCH 4/4] prefer using python -m pip --- recipe/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 48a2b19..945003c 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -44,7 +44,7 @@ test: requires: - pip commands: - - pip check + - python -m pip check - jupyter notebook -h - jupyter nbextension -h - jupyter serverextension -h
Travis - - macOS + + macOS