Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Swap ssh2-python dependency to ssh2-python312 #275

Merged
merged 1 commit into from
Mar 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,6 @@ Install Broker either by cloning locally with `pip install .` or with `pip insta

Copy the example settings file to `broker_settings.yaml` and edit it.

(optional) If you are using Broker for ssh-based host interaction, install one of the supported ssh backends.
```
# For python 3.12+
pip install broker[ssh2]

# For python 3.11 and below
pip install broker[ssh2_py311]
```

(optional) If you are using the Container provider, install the extra dependency based on your container runtime of choice with either `pip install broker[podman]` or `pip install broker[docker]`.

(optional) If you are using the Beaker provider, install the extra dependency with `dnf install krb5-devel` and then `pip install broker[beaker]`.
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ dependencies = [
"packaging",
"pyyaml",
"setuptools",
"ssh2-python312@git+https://github.com/jacobcallahan/ssh2-python.git",
"ssh2-python312",
]
dynamic = ["version"] # dynamic fields to update on build - version via setuptools_scm

Expand All @@ -53,7 +53,6 @@ setup = [
"build",
"twine",
]
# ssh2 = ["ssh2-python@git+https://github.com/jacobcallahan/ssh2-python.git"]
ssh2_py311 = ["ssh2-python"]

[project.scripts]
Expand Down