Skip to content

Commit 9fadac0

Browse files
refactor: Update Jupyter installation and add pandas dependency
This commit updates the CI/CD workflow to install the Jupyter notebook and pandas dependencies. The Jupyter installation command now includes the installation of the pandas library. This ensures that the notebook can utilize the pandas library for data manipulation and analysis. Note: The recent repository commits have been reviewed to identify the established commit message conventions.
1 parent c6024e1 commit 9fadac0

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

.github/workflows/CI-CD.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,9 @@ jobs:
9696
python-version: "3.9"
9797

9898
- name: Install Jupyter
99-
run: pip install notebook
99+
run: |
100+
pip install notebook
101+
pip install pandas
100102
101103
- name: Convert notebook to HTML
102104
run: |

notebooks/data_explorer.ipynb

+23
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,29 @@
77
"## 1. Consolidated files in the unique DataFrame and show the total files extracted"
88
]
99
},
10+
{
11+
"cell_type": "code",
12+
"execution_count": 2,
13+
"metadata": {},
14+
"outputs": [
15+
{
16+
"name": "stdout",
17+
"output_type": "stream",
18+
"text": [
19+
"Requirement already satisfied: pandas in /Users/ivbarauna/repos/ETL-awesome-api/.venv/lib/python3.9/site-packages (2.2.2)\n",
20+
"Requirement already satisfied: numpy>=1.22.4 in /Users/ivbarauna/repos/ETL-awesome-api/.venv/lib/python3.9/site-packages (from pandas) (1.26.4)\n",
21+
"Requirement already satisfied: python-dateutil>=2.8.2 in /Users/ivbarauna/repos/ETL-awesome-api/.venv/lib/python3.9/site-packages (from pandas) (2.9.0.post0)\n",
22+
"Requirement already satisfied: pytz>=2020.1 in /Users/ivbarauna/repos/ETL-awesome-api/.venv/lib/python3.9/site-packages (from pandas) (2024.1)\n",
23+
"Requirement already satisfied: tzdata>=2022.7 in /Users/ivbarauna/repos/ETL-awesome-api/.venv/lib/python3.9/site-packages (from pandas) (2024.1)\n",
24+
"Requirement already satisfied: six>=1.5 in /Users/ivbarauna/repos/ETL-awesome-api/.venv/lib/python3.9/site-packages (from python-dateutil>=2.8.2->pandas) (1.16.0)\n",
25+
"Note: you may need to restart the kernel to use updated packages.\n"
26+
]
27+
}
28+
],
29+
"source": [
30+
"pip install pandas"
31+
]
32+
},
1033
{
1134
"cell_type": "code",
1235
"execution_count": 1,

0 commit comments

Comments
 (0)