Skip to content

Commit

Permalink
Merge pull request #7 from ika-rwth-aachen/fix/optional-deps-pip
Browse files Browse the repository at this point in the history
Fix optional dependencies for pip<21.2
  • Loading branch information
jpbusch authored Nov 14, 2023
2 parents 1063da4 + baf24b5 commit a4a0d92
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions docker-run-cli/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.5"
version = "0.9.6"
description = "'docker run' and 'docker exec' with useful defaults"
license = {file = "LICENSE"}
readme = "README.md"
Expand All @@ -28,9 +28,9 @@ requires-python = ">=3.7"

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

[project.urls]
"Repository" = "https://github.com/ika-rwth-aachen/docker-run"
Expand Down
2 changes: 1 addition & 1 deletion docker-run-cli/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.5"
__version__ = "0.9.6"

0 comments on commit a4a0d92

Please sign in to comment.