Skip to content

Commit

Permalink
bump version post release (#654)
Browse files Browse the repository at this point in the history
  • Loading branch information
savente93 authored Nov 16, 2023
1 parent cafe5df commit 96ab662
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion hydromt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""HydroMT: Automated and reproducible model building and analysis."""

# version number without 'v' at start
__version__ = "0.9.1"
__version__ = "0.9.2.dev"

# pkg_resource deprication warnings originate from dependencies
# so silence them for now
Expand Down
20 changes: 12 additions & 8 deletions pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,57 +41,61 @@ docker-build-min = { cmd = [
"build",
"-t",
"deltares/hydromt:min",
"--target=min .",
"--target=min",
".",
], depends_on = "env-min" }
docker-build-full = { cmd = [
"docker",
"build",
"-t",
"deltares/hydromt:full",
" --target=full .",
"--target=full",
".",
], depends_on = "env-full" }
docker-build-slim = { cmd = [
"docker",
"build",
"-t",
"deltares/hydromt:slim",
" --target=slim .",
"--target=slim",
".",
], depends_on = "env-slim" }
docker-build-latest = { cmd = [
"docker",
"build",
"-t",
"deltares/hydromt:latest",
" --target=slim .",
"--target=slim",
".",
], depends_on = "env-slim" }

docker-publish-min = { cmd = [
"docker",
"push",
"deltares/hydromt:min",
], depends_on = [
"docker-build-min ",
"docker-build-min",
] }
docker-publish-slim = { cmd = [
"docker",
"push",
"deltares/hydromt:slim",
], depends_on = [
"docker-build-slim ",
"docker-build-slim",
] }
docker-publish-latest = { cmd = [
"docker",
"push",
"deltares/hydromt:latest",
], depends_on = [
"docker-build-latest ",
"docker-build-latest",
] }
docker-publish-full = { cmd = [
"docker",
"push",
"deltares/hydromt:full",
], depends_on = [
"docker-build-full ",
"docker-build-full",
] }
docker-publish = { depends_on = [
"docker-publish-min",
Expand Down

0 comments on commit 96ab662

Please sign in to comment.