Spaces:
Build error
Build error
Paul Kiage
commited on
Commit
•
4d161f5
1
Parent(s):
499aca1
Develop: updated dependencies and docs (#7)
Browse files* chore: update dependencies
https://github.com/jupyter/nbconvert/releases/tag/7.0.0rc0
* docs: add details on manual deploy to heroku
- README.md +17 -0
- poetry.lock +2 -2
- requirements.txt +0 -0
README.md
CHANGED
@@ -106,6 +106,23 @@ Sleeps: yes
|
|
106 |
|
107 |
[Enabled Autodeploy from Github](https://devcenter.heroku.com/articles/github-integration)
|
108 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
# Roadmap
|
110 |
|
111 |
To view/submit ideas as well as contribute please view issues.
|
|
|
106 |
|
107 |
[Enabled Autodeploy from Github](https://devcenter.heroku.com/articles/github-integration)
|
108 |
|
109 |
+
[Manual deploy to Heroku](https://devcenter.heroku.com/articles/git#deploy-your-code)
|
110 |
+
|
111 |
+
From main branch:
|
112 |
+
```shell
|
113 |
+
heroku login
|
114 |
+
|
115 |
+
git push heroku main
|
116 |
+
```
|
117 |
+
|
118 |
+
From branch beside main:
|
119 |
+
|
120 |
+
```shell
|
121 |
+
heroku login
|
122 |
+
|
123 |
+
git push heroku branch_name:main
|
124 |
+
```
|
125 |
+
|
126 |
# Roadmap
|
127 |
|
128 |
To view/submit ideas as well as contribute please view issues.
|
poetry.lock
CHANGED
@@ -662,7 +662,7 @@ test = ["ipython", "ipykernel", "ipywidgets (<8.0.0)", "pytest (>=4.1)", "pytest
|
|
662 |
|
663 |
[[package]]
|
664 |
name = "nbconvert"
|
665 |
-
version = "
|
666 |
description = "Converting Jupyter Notebooks"
|
667 |
category = "main"
|
668 |
optional = false
|
@@ -675,7 +675,7 @@ entrypoints = ">=0.2.2"
|
|
675 |
jinja2 = ">=2.4"
|
676 |
jupyter-core = "*"
|
677 |
jupyterlab-pygments = "*"
|
678 |
-
mistune = "
|
679 |
nbclient = ">=0.5.0,<0.6.0"
|
680 |
nbformat = ">=4.4"
|
681 |
pandocfilters = ">=1.4.1"
|
|
|
662 |
|
663 |
[[package]]
|
664 |
name = "nbconvert"
|
665 |
+
version = "*"
|
666 |
description = "Converting Jupyter Notebooks"
|
667 |
category = "main"
|
668 |
optional = false
|
|
|
675 |
jinja2 = ">=2.4"
|
676 |
jupyter-core = "*"
|
677 |
jupyterlab-pygments = "*"
|
678 |
+
mistune = "*"
|
679 |
nbclient = ">=0.5.0,<0.6.0"
|
680 |
nbformat = ">=4.4"
|
681 |
pandocfilters = ">=1.4.1"
|
requirements.txt
CHANGED
Binary files a/requirements.txt and b/requirements.txt differ
|
|