Skip to content

Commit 0e0fd40

Browse files
committed
Update requirements and add pyproject.toml
1 parent f471023 commit 0e0fd40

File tree

3 files changed

+20
-5
lines changed

3 files changed

+20
-5
lines changed

conda_environment.yaml

+8-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ channels:
33
- defaults
44
- conda-forge
55
dependencies:
6-
- python=3.12.3
6+
- python=3.12
77
- beautifulsoup4=4.12.3
88
- black=24.4.2
9+
- codespell
910
- coverage=7.2.2
1011
- folium=0.14.0
1112
- geopandas=0.14.2
@@ -14,14 +15,18 @@ dependencies:
1415
- nbqa=1.8.5
1516
- notebook=7.0.8
1617
- numpy=1.26.4
17-
- pandas=2.2.1
18+
- pandas=2.2.2
1819
- pip=24.0
20+
- pre-commit=3.4.0
1921
- pydocstyle=6.3.0
2022
- pylint=3.2.2
2123
- pytest=7.4.4
2224
- requests=2.32.2
25+
- ruff=0.3.5
2326
- scikit-learn=1.4.2
2427
- scipy=1.13.1
28+
- seaborn=0.13.2
2529
- shapely=2.0.1
30+
- statsmodels=0.14.2
2631
- pip:
27-
- panda-helper==0.0.2
32+
- panda-helper=0.1.1

pyproject.toml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[tool.ruff]
2+
extend-include = ["*.ipynb"]
3+
4+
[tool.ruff.lint]
5+
select = ["D", "F", "B"] # pydocstyle, pyflakes, flake8-bugbear

requirements.txt

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
beautifulsoup4==4.12.3
22
black==24.4.2
3+
codespell==0.0.0
34
coverage==7.2.2
45
folium==0.14.0
56
geopandas==0.14.2
@@ -8,13 +9,17 @@ matplotlib==3.8.4
89
nbqa==1.8.5
910
notebook==7.0.8
1011
numpy==1.26.4
11-
pandas==2.2.1
12-
panda-helper==0.0.2
12+
pandas==2.2.2
13+
panda-helper==0.1.1
1314
pip==24.0
15+
pre-commit==3.4.0
1416
pydocstyle==6.3.0
1517
pylint==3.2.2
1618
pytest==7.4.4
1719
requests==2.32.2
20+
ruff==0.3.5
1821
scikit-learn==1.4.2
1922
scipy==1.13.1
23+
seaborn==0.13.2
2024
shapely==2.0.1
25+
statsmodels==0.14.2

0 commit comments

Comments
 (0)