Skip to content

Commit 7e38b4c

Browse files
authored
drawio 16.2.4 (QuantStack#87)
1 parent 6cd7d29 commit 7e38b4c

File tree

14 files changed

+74
-20
lines changed

14 files changed

+74
-20
lines changed

.binder/environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ channels:
2020
- conda-forge
2121

2222
dependencies:
23-
- python >=3.9
23+
- python >=3.7
2424
# demo toys
2525
- graphviz2drawio
2626
- jupyter-lsp-python-lsp-server

.github/environment.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ dependencies:
4545
- flake8
4646
- isort >=5
4747
- pyflakes
48+
- pyyaml
4849
- robotframework-lint
4950
# unit testing
5051
- pytest

.github/pip-build.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# basically ipydrawio[all,test] and ipydrawio-export... plus robot
1+
# basically ipydrawio[all,test] and ipydrawio-export... plus robot, pyyaml
22
black
33
doit
44
flake8
@@ -13,6 +13,7 @@ pip
1313
pyflakes
1414
pypdf2
1515
pytest
16+
pyyaml
1617
requests
1718
requests-cache
1819
robotframework

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -239,11 +239,11 @@ jobs:
239239
fail-fast: false
240240
matrix:
241241
os: ['ubuntu', 'macos', 'windows']
242-
python-version: ['3.6', '3.8']
242+
python-version: ['3.7', '3.10']
243243
include:
244-
- python-version: '3.6'
244+
- python-version: '3.7'
245245
CI_ARTIFACT: 'sdist'
246-
- python-version: '3.8'
246+
- python-version: '3.10'
247247
CI_ARTIFACT: 'wheel'
248248
env:
249249
TESTING_IN_CI: '1'

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010

1111
#### @deathbeds/ipydrawio-notebook 1.2.0
1212

13-
#### @deathbeds/ipydrawio-webpack 16.1.0
13+
#### @deathbeds/ipydrawio-webpack 16.2.400
1414

15-
- updates to drawio v16.1.0
15+
- updates to drawio v16.2.400
1616

1717
#### @deathbeds/ipydrawio-jupyter-templates 1.2.0
1818

demo/jupyter_lite_config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"LiteBuildConfig": {
33
"federated_extensions": [
44
"../py_packages/ipydrawio/dist/ipydrawio-1.2.0-py3-none-any.whl",
5-
"https://github.com/conda-forge/releases/releases/download/noarch/bqplot-0.12.31-pyhd8ed1ab_0.tar.bz2/bqplot-0.12.31-pyhd8ed1ab_0.tar.bz2",
5+
"https://github.com/conda-forge/releases/releases/download/noarch/bqplot-0.12.32-pyhd8ed1ab_0.tar.bz2/bqplot-0.12.32-pyhd8ed1ab_0.tar.bz2",
66
"https://github.com/conda-forge/releases/releases/download/noarch/jupyterlab-tour-3.1.4-pyhd8ed1ab_0.tar.bz2/jupyterlab-tour-3.1.4-pyhd8ed1ab_0.tar.bz2",
77
"https://github.com/conda-forge/releases/releases/download/noarch/jupyterlab_widgets-1.0.2-pyhd8ed1ab_0.tar.bz2/jupyterlab_widgets-1.0.2-pyhd8ed1ab_0.tar.bz2",
88
"https://github.com/conda-forge/releases/releases/download/noarch/wxyz_datagrid-0.5.1-pyhd8ed1ab_0.tar.bz2/wxyz_datagrid-0.5.1-pyhd8ed1ab_0.tar.bz2",

dodo.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -902,12 +902,15 @@ def task_test():
902902
dict(
903903
name="integrity",
904904
file_dep=[
905-
P.SCRIPTS / "integrity.py",
906-
P.OK_LINT,
907-
P.DEMO_CONFIG,
908905
*[*P.OK_SERVEREXT.values()],
909-
*[*P.PY_WHEEL.values()],
910906
*[*P.PY_SDIST.values()],
907+
*[*P.PY_WHEEL.values()],
908+
*P.ALL_SETUP_CFG,
909+
P.DEMO_CONFIG,
910+
P.ENV_BINDER,
911+
P.OK_LINT,
912+
P.RECIPE,
913+
P.SCRIPTS / "integrity.py",
911914
],
912915
actions=[
913916
["python", "-m", "pytest", "--pyargs", "scripts.integrity", "-vv"]

packages/ipydrawio-webpack/drawio

Submodule drawio updated 97 files

packages/ipydrawio-webpack/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@
4343
"build:pre": "python scripts/patch.py && python scripts/static.py"
4444
},
4545
"types": "lib/index.d.ts",
46-
"version": "16.1.0"
46+
"version": "16.2.400"
4747
}

py_packages/ipydrawio-export/setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ classifiers =
3939
License :: OSI Approved :: Apache Software License
4040
Programming Language :: Python
4141
Programming Language :: Python :: 3 :: Only
42-
Programming Language :: Python :: 3.6
4342
Programming Language :: Python :: 3.7
4443
Programming Language :: Python :: 3.8
4544
Programming Language :: Python :: 3.9
45+
Programming Language :: Python :: 3.10
4646
Topic :: Multimedia :: Graphics :: Editors :: Vector-Based
4747
Topic :: Multimedia :: Graphics :: Presentation
4848

4949
[options]
50-
python_requires = >=3.6
50+
python_requires = >=3.7
5151
package_dir =
5252
= src
5353

0 commit comments

Comments
 (0)