Skip to content

Commit

Permalink
Merge pull request #547 from WilhelmusLab/update-conda-build
Browse files Browse the repository at this point in the history
chore: update versions for conda build
  • Loading branch information
cpaniaguam authored Jan 27, 2025
2 parents 95b93ef + bc74ab3 commit b79f8e1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/IceFloeTracker.jl
Original file line number Diff line number Diff line change
Expand Up @@ -93,14 +93,14 @@ const sk_exposure = PyNULL()
const getlatlon = PyNULL()

function __init__()
skimage = "scikit-image=0.24.0"
skimage = "scikit-image=0.20.0"
copy!(sk_measure, pyimport_conda("skimage.measure", skimage))
copy!(sk_exposure, pyimport_conda("skimage.exposure", skimage))
copy!(sk_morphology, pyimport_conda("skimage.morphology", skimage))
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")
pyimport_conda("rasterio", "rasterio=1.4.3")
pyimport_conda("jinja2", "jinja2=3.1.0")
pyimport_conda("pandas", "pandas=2.1.0")
@pyinclude(joinpath(@__DIR__, "latlon.py"))
copy!(getlatlon, py"getlatlon")
return nothing
Expand Down

2 comments on commit b79f8e1

@cpaniaguam
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/123819

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.6.3 -m "<description of version>" b79f8e10a25c38999dc19346b69cd2fb13c54b98
git push origin v0.6.3

Also, note the warning: Version 0.6.3 skips over 0.6.0
This can be safely ignored. However, if you want to fix this you can do so. Call register() again after making the fix. This will update the Pull request.

Please sign in to comment.