Skip to content

Commit

Permalink
Update dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjstewart committed Dec 21, 2023
1 parent 988f707 commit 921fb5f
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 26 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/black.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.11
- name: Install black
run: pip install black
- name: Run black checks
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/flake8.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.11
- name: Install dependencies
run: pip install flake8
- name: Run flake8 checks
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/isort.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.11
- name: Install isort
run: pip install isort[colors]
- name: Run isort checks
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/mypy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,8 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.11
- name: Install dependencies
run: |
sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable
sudo apt-get update
sudo apt-get install libgdal-dev libgeos-dev libproj-dev
pip install -r requirements.txt
run: pip install -r requirements.txt
- name: Run mypy checks
run: mypy .
34 changes: 17 additions & 17 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
black
cartopy
cmocean
flake8
geocube
geopandas>=0.10
isort[color]
matplotlib
mypy
netcdf4
numpy>=1.21
pandas>=0.24
pygeos
scikit-learn>=0.18
scipy
shapely
xarray
black==23.12.0
cartopy==0.22.0
cmocean==3.0.3
flake8==6.1.0
geocube==0.4.2
geopandas==0.14.1
isort[color]==5.13.2
matplotlib==3.8.2
mypy==1.7.1
netcdf4==1.6.5
numpy==1.26.2
pandas==2.1.4
pygeos==0.14
scikit-learn==1.3.2
scipy==1.11.4
shapely==2.0.2
xarray==2023.12.0

0 comments on commit 921fb5f

Please sign in to comment.