Skip to content

Commit 144cd1a

Browse files
authored
robotframework 3.1.1 and robotkernel 0.10.0 (#11)
* bump all the version * fix the shasums * always with the crazy exit codes * update license * more license
1 parent 3569e9a commit 144cd1a

File tree

14 files changed

+23
-62
lines changed

14 files changed

+23
-62
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) 2018, Nick Bollweg
3+
Copyright (c) 2018, Robots from Jupyter
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,5 +89,5 @@ showcase some of the features of using Robot Framework interactively.
8989
[construct.yaml.in]: ./constructor/construct.yaml.in
9090
[labextensions]: https://www.npmjs.com/search?q=keywords:jupyterlab-extension
9191
[Miniconda]: https://conda.io/miniconda.html
92-
[robotkernel]: https://github.com/datakurre/robotkernel
92+
[robotkernel]: https://github.com/robots-from-jupyter/robotkernel
9393
[webdriver]: https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/#downloads

anaconda-project.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ commands:
1414
env_spec: _build
1515

1616
build:win:
17-
description: until 2.3.0 comes out, use constructor@master for size_in_bytes fix
1817
windows: python -m scripts.build
1918
env_spec: _build_win
2019

@@ -32,10 +31,8 @@ commands:
3231

3332
lab:setup:
3433
env_spec: robotlab-dev
35-
unix: cd robotlab && python -m pip install -e . --ignore-installed --no-deps --no-cache-dir
36-
-vv
37-
windows: cd robotlab && python -m pip install -e . --ignore-installed --no-deps
38-
--no-cache-dir -vv
34+
unix: cd robotlab && python -m pip install -e . --ignore-installed --no-deps --no-cache-dir -vv
35+
windows: cd robotlab && python -m pip install -e . --ignore-installed --no-deps --no-cache-dir -vv
3936

4037
robotlab:build:
4138
env_spec: robotlab-dev

recipes/robotframework/meta.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{% set name = "robotframework" %}
2-
{% set version = "3.1" %}
2+
{% set version = "3.1.1" %}
33

44
package:
55
name: {{ name }}
66
version: {{ version }}
77

88
source:
99
- url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.zip
10-
sha256: b28ba5c1f14402ff53a99ecaf74ff782a9ed5a68892eab2b76ecd98b9ecd2127
10+
sha256: 7e29b2ac415e6bdbde348d25c0c759c6d3df012c897b31dcf98fd2dd94cee7bd
1111
folder: dist
1212
- url: https://github.com/robotframework/robotframework/archive/v{{ version }}.tar.gz
13-
sha256: 468d4364293f35a42ec98561823c26063535b024055e207218bdf3f1970b94dd
13+
sha256: f1e15c027ebe60d5d770a28fbd7a931323e95ce7b07a52a87a62637c80056065
1414
folder: src
1515

1616
build:
@@ -66,6 +66,7 @@ test:
6666
- robot --version || [[ $? == 251 ]] # [unix]
6767
- rebot --version || [[ $? == 251 ]] # [unix]
6868

69+
6970
about:
7071
home: http://robotframework.org
7172
license: Apache-2.0

recipes/robotkernel/install_spec.py

Lines changed: 0 additions & 35 deletions
This file was deleted.

recipes/robotkernel/meta.yaml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,16 @@
11
package:
22
name: {% set name = "robotkernel" %}{{ name }}
3-
version: {% set version = "0.9.0" %}{{ version }}
3+
version: {% set version = "0.10.0" %}{{ version }}
44

55
source:
66
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
7-
sha256: d1f900ec7443c691533496076a56ccd00042fc27299a898bc89c311f7b60fef8
7+
sha256: fcd2066359b42a0c5d32e3b772482253e5ca6e24e9271abf6ecb9b4723b66a9e
88

99
build:
1010
number: 0
1111
skip: true # [py<36]
1212
script:
1313
- {{ PYTHON }} -m pip install --no-deps --ignore-installed --no-cache-dir -vvv .
14-
- cp {{ RECIPE_DIR }}/install_spec.py {{ SRC_DIR }} # [unix]
15-
- copy {{ RECIPE_DIR }}\install_spec.py {{ SRC_DIR }} # [win]
16-
- {{ PYTHON }} install_spec.py
1714
entry_points:
1815
- nbrobot = robotkernel.nbreader:robot
1916
- nblibdoc = robotkernel.nbreader:libdoc
@@ -28,6 +25,7 @@ requirements:
2825
- docutils
2926
- ipykernel
3027
- lunr
28+
- nbformat
3129
- pillow
3230
- pygments
3331
- python
@@ -40,7 +38,7 @@ test:
4038
- jupyter kernelspec list
4139

4240
about:
43-
home: https://github.com/datakurre/robotkernel
41+
home: https://github.com/robots-from-jupyter/robotkernel
4442
license: BSD-3-Clause
4543
license_family: BSD
4644
license_file: LICENSE

recipes/robotlab/meta.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44

55
package:
66
name: {% set name = "robotlab" %}{{ name }}
7-
version: {% set version = "0.9.0" %}{{ version }}
7+
version: {% set version = "0.10.0" %}{{ version }}
88

99
source:
1010
- path: ../../robotlab
1111
folder: robotlab
12-
- url: https://github.com/datakurre/robotkernel/archive/{{ version }}.tar.gz
13-
sha256: b43821ddc780a6434f83a0de9733a469f911348aa2ff3e32596bef6abdf76464
12+
- url: https://github.com/robots-from-jupyter/robotkernel/archive/{{ version }}.tar.gz
13+
sha256: 0b62946fcc291ccc0c37ccd27dbc361ea0b09d0abe8c3c46eea358c1487ea5ed
1414
folder: robotkernel
1515

1616
build:

robotlab/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) 2018, Nick Bollweg
3+
Copyright (c) 2019, Robots from Jupyter
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

robotlab/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ robotkernel.
77
- Borrows heavily from [jupyterlab_delux][].
88

99
[jupyterlab_delux]: https://github.com/jonmmease/jupyterlab_delux
10-
[robotkernel]: https://github.com/datakurre/robotkernel
10+
[robotkernel]: https://github.com/robots-from-jupyter/robotkernel

robotlab/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = robotlab
3-
version = 0.9.0
3+
version = 0.10.0
44
description = A pre-configured JupyterLab for demonstrating robotkernel
55
long_description = file: README.md
66
url = https://github.com/robots-from-jupyter/robotlab

0 commit comments

Comments
 (0)