update poster, add some more links (#109)

pull/111/head
Nicholas Bollweg 2022-11-07 18:09:53 -06:00 zatwierdzone przez GitHub
rodzic 5442918d6e
commit 647468ea4a
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
4 zmienionych plików z 139 dodań i 101 usunięć

Wyświetl plik

@ -340,6 +340,8 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: cache (conda)
uses: actions/cache@v3
@ -379,9 +381,9 @@ jobs:
use-only-tar-bz2: true
use-mamba: true
- name: tests (unit)
- name: build
shell: bash -l {0}
run: doit test:pytest:* || doit test:pytest:* || doit test:pytest:*
run: doit build
- name: build docs
shell: bash -l {0}
@ -395,17 +397,6 @@ jobs:
shell: bash -l {0}
run: doit test:robot
- name: upload coverage
shell: bash -l {0}
run: |
set -eux
cd py_packages/ipydrawio
codecov --root ../..
cd ../ipydrawio-export
codecov --root ../..
cd ../ipydrawio-mathjax
codecov --root ../..
- name: upload (atest)
if: always()
uses: actions/upload-artifact@v3

File diff suppressed because one or more lines are too long

Przed

Szerokość:  |  Wysokość:  |  Rozmiar: 326 KiB

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 321 KiB

Wyświetl plik

@ -419,7 +419,14 @@
"id": "63e1049d-cfa4-49d2-9dea-db554172899a",
"metadata": {},
"source": [
"Another approach is generating diagrams, with tools such as [graphviz2drawio](https://github.com/hbmartin/graphviz2drawio) or [n2g](https://github.com/dmulyalin/N2G). Both offer an intermediate representation which can be more effective at keeping documentation up-to-date than hand editing diagrams."
"Another approach is generating diagrams, with tools such as:\n",
"\n",
"- [graphviz2drawio](https://github.com/hbmartin/graphviz2drawio) \n",
"- [n2g](https://github.com/dmulyalin/N2G)\n",
"- [drawio-network-plot](https://github.com/amroashram/drawio_network_plot)\n",
"- [python-drawio](https://github.com/chmduquesne/python-drawio)\n",
"\n",
"These offer an intermediate representation, as code or some other grammar, which can be more effective at keeping documentation up-to-date than hand editing diagrams."
]
}
],

Wyświetl plik

@ -102,6 +102,7 @@ def task_env():
def task_submodules():
"""ensure submodules are available"""
subs = subprocess.check_output(["git", "submodule"]).decode("utf-8").splitlines()
def _clean():