Skip to content

Commit

Permalink
Merge pull request #346 from WilhelmusLab/345-add-jinja2-to-py-deps
Browse files Browse the repository at this point in the history
deps: add jinja2 pandas
  • Loading branch information
cpaniaguam authored Nov 2, 2023
2 parents 032b2bc + 319b060 commit 699a9d5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: update pip
run: python -m pip install -U pip
- name: install python deps
run: python -m pip install -U scikit-image==0.20.0 pyproj==3.6.0 rasterio==1.3.7 requests==2.31.0 skyfield==1.45.0
run: python -m pip install -U scikit-image==0.20.0 pyproj==3.6.0 rasterio==1.3.7 requests==2.31.0 skyfield==1.45.0 pandas jinja2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: update pip
run: python -m pip install -U pip
- name: install python deps
run: python -m pip install -U scikit-image==0.20.0 pyproj==3.6.0 rasterio==1.3.7 requests==2.31.0 skyfield==1.45.0
run: python -m pip install -U scikit-image==0.20.0 pyproj==3.6.0 rasterio==1.3.7 requests==2.31.0 skyfield==1.45.0 pandas jinja2
- uses: julia-actions/setup-julia@v1
with:
version: '1.7'
Expand Down
2 changes: 2 additions & 0 deletions src/IceFloeTracker.jl
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ function __init__()
copy!(sk_measure, pyimport_conda("skimage.measure", "scikit-image=0.20.0"))
pyimport_conda("pyproj", "pyproj=3.6.0")
pyimport_conda("rasterio", "rasterio=1.3.7")
pyimport_conda("jinja2", "jinja2=3.1.2")
pyimport_conda("pandas", "pandas=2")
@pyinclude(joinpath(@__DIR__, "latlon.py"))
copy!(getlatlon, py"getlatlon")
return nothing
Expand Down

0 comments on commit 699a9d5

Please sign in to comment.