Skip to content

Commit

Permalink
notebook to check dependencies of base jupyterlab install
Browse files Browse the repository at this point in the history
  • Loading branch information
aecorn committed Aug 30, 2023
1 parent b6cbdf7 commit f08ebeb
Showing 1 changed file with 101 additions and 0 deletions.
101 changes: 101 additions & 0 deletions demo/check_dependencies.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"id": "5b9be24e-cfe6-4d48-9808-423207642652",
"metadata": {
"tags": []
},
"outputs": [],
"source": [
"import pandas\n",
"pandas.__version__\n",
"#\"^1.5.0\""
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "a8051dd8-a4bc-4f13-983f-2342009b3cc5",
"metadata": {
"tags": []
},
"outputs": [],
"source": [
"import dapla\n",
"dapla.__version__\n",
"#\"^1.3.3\""
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "7192e983-2609-4fb6-9858-84005065b50c",
"metadata": {
"tags": []
},
"outputs": [],
"source": [
"import requests\n",
"requests.__version__\n",
"#\"^2.28.1\""
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "be587af7-5475-428d-8ad1-57da5bd14d5e",
"metadata": {
"tags": []
},
"outputs": [],
"source": [
"import ipywidgets\n",
"ipywidgets.__version__\n",
"#^8.0.2\""
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "f4f439cb-c01b-46a6-bdcc-c978269137ef",
"metadata": {
"tags": []
},
"outputs": [],
"source": [
"import IPython\n",
"IPython.__version__\n",
"#\"^8.5.0\""
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "ff76a8a0-78ba-407b-ae45-fb7f6d3d7c3e",
"metadata": {
"tags": []
},
"outputs": [],
"source": [
"import pyjstat\n",
"pyjstat.__version__\n",
"#\"^2.4.0\""
]
}
],
"metadata": {
"language_info": {
"codemirror_mode": {
"name": "ipython"
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python"
}
},
"nbformat": 4,
"nbformat_minor": 5
}

0 comments on commit f08ebeb

Please sign in to comment.