Skip to content

Commit 1c95325

Browse files
committed
more
1 parent f8fcd6c commit 1c95325

File tree

2 files changed

+25
-5
lines changed

2 files changed

+25
-5
lines changed

all_repos.txt

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# github.repo : pypi url (or empty)
1+
# github.repo : pypi url (or empty)
2+
# with same nane exacttly
23
jupyter-incubator/sparkmagic : https://pypi.org/project/sparkmagic
34
jupyter-widgets/ipywidgets : https://pypi.org/project/ipywidgets
45
jupyter-server/jupyter-resource-usage : https://pypi.org/project/jupyter-resource-usage
@@ -95,9 +96,22 @@ jupyterlab/language-packs : https://pypi.org/project/jupyterlab-language-pack-v
9596
jupyterlab/language-packs : https://pypi.org/project/jupyterlab-language-pack-zh-CN
9697
jupyterlab/language-packs : https://pypi.org/project/jupyterlab-language-pack-zh-TW
9798

99+
# To migrate
100+
jupyter/qtconsole : https://pypi.org/project/qtconsole
101+
102+
# variation in names:
103+
jupyterlab/jupyter-collaboration : https://pypi.org/project/jupyter-collaboration-ui
104+
jupyterlab/jupyter-collaboration : https://pypi.org/project/jupyter-docprovider
105+
jupyter-server/kernel_gateway : https://pypi.org/project/jupyter-kernel-gateway
106+
jupyter-server/synchronizer : https://pypi.org/project/jupyter-server-synchronizer
107+
98108
# repo with no packages:
99-
https://github.com/binderhub-ci-repos/lfs:
100-
https://github.com/jupyter/design:
109+
binderhub-ci-repos/lfs:
110+
jupyter/design:
111+
jupyter/security:
112+
jupyter/ideas:
113+
binderhub-ci-repos/lfs:
114+
jupyter/governance:
101115

102116
# security forks:
103117
# is it safe to list those URL ?
@@ -162,3 +176,6 @@ jupyterhub/jupyterhub-tutorial:
162176
jupyterlab/jupytercon-jupyterlab-tutorial:
163177
jupyterlab/scipy2018-jupyterlab-tutorial:
164178
jupyterlab/scipy2019-jupyterlab-tutorial:
179+
180+
# exampels and cookie cutter
181+
voila-gallery/hello-world-example:

tools/all_repos.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@
2424

2525
maintainers_name_map = {
2626
"mbussonn": "Carreau",
27+
"takowl": "takluyver",
28+
"Kyle.Kelley": "rgbkrk",
29+
"bgranger": "ellisonbg",
2730
}
2831

2932
import diskcache
@@ -247,8 +250,8 @@ async def _loc(targets, org, repo):
247250
corg = org
248251
if status == 200:
249252
print(
250-
f"https://github.com/{org}/{repo}".ljust(70),
251-
f"{status} for https://pypi.org/project/{repo}",
253+
f"{org}/{repo}".ljust(30),
254+
f" : https://pypi.org/project/{repo}",
252255
)
253256

254257
for maintainer in maintainers:

0 commit comments

Comments
 (0)