Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unskip py36, pip check, add maintainer #34

Merged
merged 4 commits into from
Jan 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .azure-pipelines/azure-pipelines-linux.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .azure-pipelines/azure-pipelines-osx.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .azure-pipelines/azure-pipelines-win.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions .ci_support/linux_64_python3.6.____73_pypy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
cdt_name:
- cos6
channel_sources:
- conda-forge,defaults
channel_targets:
- conda-forge main
docker_image:
- quay.io/condaforge/linux-anvil-comp7
pin_run_as_build:
python:
min_pin: x.x
max_pin: x.x
python:
- 3.6.* *_73_pypy
target_platform:
- linux-64
16 changes: 16 additions & 0 deletions .ci_support/linux_64_python3.6.____cpython.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
cdt_name:
- cos6
channel_sources:
- conda-forge,defaults
channel_targets:
- conda-forge main
docker_image:
- quay.io/condaforge/linux-anvil-comp7
pin_run_as_build:
python:
min_pin: x.x
max_pin: x.x
python:
- 3.6.* *_cpython
target_platform:
- linux-64
16 changes: 16 additions & 0 deletions .ci_support/osx_64_python3.6.____73_pypy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
MACOSX_DEPLOYMENT_TARGET:
- '10.9'
channel_sources:
- conda-forge,defaults
channel_targets:
- conda-forge main
macos_machine:
- x86_64-apple-darwin13.4.0
pin_run_as_build:
python:
min_pin: x.x
max_pin: x.x
python:
- 3.6.* *_73_pypy
target_platform:
- osx-64
16 changes: 16 additions & 0 deletions .ci_support/osx_64_python3.6.____cpython.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
MACOSX_DEPLOYMENT_TARGET:
- '10.9'
channel_sources:
- conda-forge,defaults
channel_targets:
- conda-forge main
macos_machine:
- x86_64-apple-darwin13.4.0
pin_run_as_build:
python:
min_pin: x.x
max_pin: x.x
python:
- 3.6.* *_cpython
target_platform:
- osx-64
12 changes: 12 additions & 0 deletions .ci_support/win_64_python3.6.____cpython.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
channel_sources:
- conda-forge,defaults
channel_targets:
- conda-forge main
pin_run_as_build:
python:
min_pin: x.x
max_pin: x.x
python:
- 3.6.* *_cpython
target_platform:
- win-64
2 changes: 1 addition & 1 deletion .github/CODEOWNERS

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 8 additions & 4 deletions .scripts/run_docker_build.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 37 additions & 1 deletion README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 10 additions & 4 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,14 @@ source:
sha256: {{ sha256 }}

build:
number: 0
script: {{ PYTHON }} -m pip install . --no-deps --ignore-installed --no-cache-dir -vvv
number: 1
script:
# TODO: re-PR this again upstream
- {{ PYTHON }} -c "__import__('shutil').rmtree('tests')"
- {{ PYTHON }} -m pip install . --no-deps --ignore-installed --no-cache-dir -vvv
entry_points:
- jupyter-server = jupyter_server.serverapp:main
- jupyter-bundlerextension = jupyter_server.bundlerextensions:main
skip: true # [py36]

requirements:
host:
Expand All @@ -40,13 +42,16 @@ requirements:
- anyio >=2.0.2

test:
requires:
- pip
commands:
- pip check
- jupyter server -h
imports:
- jupyter_server

about:
home: http://jupyter.org
home: https://jupyter.org
license: BSD-3-Clause
license_family: BSD
license_file: COPYING.md
Expand All @@ -61,3 +66,4 @@ extra:
- blink1073
- minrk
- jasongrout
- bollwyvl