Skip to content

Commit

Permalink
fix interdependencies after core package renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
lreiher committed May 30, 2023
1 parent b2d9bf1 commit 2b92aec
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docker-run-docker-ros/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "docker-run-docker-ros"
version = "1.0.0"
version = "1.0.1"
description = "docker-run plugin for Docker images built by docker-ros"
license = {file = "LICENSE"}
readme = "README.md"
Expand All @@ -23,7 +23,7 @@ classifiers = [
"Operating System :: POSIX :: Linux",
]
keywords = ["docker", "container", "ros"]
dependencies = ["docker-run"]
dependencies = ["docker-run-cli>=0.9.1"]
requires-python = ">=3.7"

[project.urls]
Expand Down
2 changes: 1 addition & 1 deletion docker-run-docker-ros/src/docker_run/plugins/docker_ros.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from docker_run.plugins.plugin import Plugin


__version__ = "1.0.0"
__version__ = "1.0.1"


class DockerRosPlugin(Plugin):
Expand Down
4 changes: 2 additions & 2 deletions docker-run/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "docker-run-cli"
version = "0.9.0"
version = "0.9.1"
description = "'docker run' and 'docker exec' with useful defaults"
license = {file = "LICENSE"}
readme = "README.md"
Expand All @@ -28,7 +28,7 @@ requires-python = ">=3.7"

[project.optional-dependencies]
dev = ["build", "twine"]
docker-ros = ["docker-run-docker-ros"]
docker-ros = ["docker-run-docker-ros>=1.0.1"]
plugins = ["docker-run-cli[docker-ros]"]
all = ["docker-run-cli[plugins]", "docker-run-cli[dev]"]

Expand Down
2 changes: 1 addition & 1 deletion docker-run/src/docker_run/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__name__ = "docker-run"
__version__ = "0.9.0"
__version__ = "0.9.1"

0 comments on commit 2b92aec

Please sign in to comment.