Skip to content

Commit 733e37c

Browse files
committed
support <none>
1 parent 86ee97e commit 733e37c

File tree

2 files changed

+25
-12
lines changed

2 files changed

+25
-12
lines changed

all_repos.txt

Lines changed: 24 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@
33
# is the repo is eponymous
44

55

6-
# with same nane exacttly
6+
jupyter-incubator/declarativewidgets_explorer : <none>
77
jupyter-incubator/sparkmagic : -
8+
jupyter-incubator/contentmanagement : jupyter_cms
9+
jupyter-incubator/proposals : <none>
810
jupyter-widgets/ipywidgets : -
911
jupyter-server/jupyter-resource-usage : -
1012
jupyter-server/jupyter_server : jupyter-server
@@ -19,6 +21,8 @@ jupyter-server/jupyter_server_fileid : -
1921
jupyter-server/jupyter-scheduler : -
2022
jupyter-server/pycrdt : -
2123
jupyter-server/pycrdt-websocket : -
24+
jupyter-server/enterprise_gateway : jupyter_enterprise_gateway
25+
jupyter-server/contributing-hour : <none>
2226
ipython/ipython : -
2327
ipython/traitlets : -
2428
ipython/ipython_genutils : ipython_genutils
@@ -68,6 +72,8 @@ jupyterlab/jupyterlab-translate : -
6872
jupyterlab/hatch-jupyter-builder : -
6973
jupyterlab/jupyter-collaboration : -
7074
jupyterlab/jupyter-collaboration : jupyter-server-ydoc
75+
jupyter/telemetry : jupyter-telemetry
76+
jupyter-standards/schemas : <none>
7177

7278
jupyterhealth/jupyter-smart-on-fhir : -
7379
jupyterhealth/jupyterhealth-client : -
@@ -140,16 +146,20 @@ jupyter/cve:
140146
# REDACTED
141147

142148
# .github repos
143-
jupyter-standard/.github:
144-
jupyter-server/.github:
145-
jupyter-xeus/.github:
146-
jupyter-standards/.github:
147-
ipython/.github:
148-
ipython/.github-1:
149-
jupyterhub/.github:
150-
voila-dashboards/.github:
151-
jupyter/.github:
152-
jupyterlab/.github:
149+
jupyter-standard/.github : <none>
150+
jupyter-server/.github : <none>
151+
jupyter-xeus/.github : <none>
152+
jupyter-standards/.github : <none>
153+
ipython/.github : <none>
154+
ipython/.github-1 : <none>
155+
jupyterhub/.github : <none>
156+
voila-dashboards/.github : <none>
157+
jupyter/.github : <none>
158+
jupyterlab/.github : <none>
159+
jupyter-governance/.github : <none>
160+
161+
162+
jupyter-governance/jupyter-foundation-governing-board : <none>
153163

154164
# .github.io repos
155165
ipython/ipython.github.com:
@@ -307,6 +317,7 @@ jupyter-xeus/robotframework-interpreter : robotframework-interpreter
307317
jupyter-xeus/xeus-python : xeus-python
308318
jupyter-xeus/xeus-python-shell : xeus-python-shell
309319
jupyter-xeus/xeus-robot : xeus-robot
320+
jupyter-xeus/xeus-robot-wheel : xeus-robot
310321

311322

312323
# Voilà
@@ -416,3 +427,5 @@ voila-dashboards/voila-heroku :
416427
voila-dashboards/voila-huggingface :
417428
voila-dashboards/voila-railway :
418429
voila-dashboards/voila-template-cookiecutter:
430+
431+
jupyterlab/jupyterlab-mp4 : <none>

tools/all_repos.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ async def main(config_file: str = "all_repos.txt"):
180180
github_slug = github_slug.strip(" /")
181181
ghorg, repo = github_slug.split("/")
182182
assert repo
183-
pypi_url = pypi_url.strip(" /")
183+
pypi_url = pypi_url.replace("<none>", "").strip(" /")
184184
if pypi_url == "-":
185185
pypi_url = f"https://pypi.org/project/{repo.replace('_', '-')}"
186186
if "https://pypi.org/project/" not in pypi_url and pypi_url != "":

0 commit comments

Comments
 (0)