Skip to content

Commit

Permalink
fix: generate_geploy_keys
Browse files Browse the repository at this point in the history
  • Loading branch information
arpanetus committed Jan 3, 2024
1 parent 7db4dca commit aaf869d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 16 deletions.
2 changes: 1 addition & 1 deletion higgsfield/internal/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def init(wd: Path, project_name: str):

hf_deploy_ssh_folder = Path.home() / ".ssh/higgsfield/"
hf_deploy_ssh_folder.mkdir(parents=True, exist_ok=True)
priv, pub, _ = generate_deploy_keys()
priv, pub = generate_deploy_keys()
(hf_deploy_ssh_folder / f"{project_name}-github-deploy.key").write_bytes(priv)

# set permissions to 400
Expand Down
13 changes: 1 addition & 12 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,9 @@ pyyaml = "^6.0.1"
asyncer = "^0.0.2"
jinja2 = "^3.1.2"
python-dotenv = "^1.0.0"
unidecode = "^1.3.7"
cryptography = "^41.0.4"
asyncssh = {extras = ["bcrypt", "fido2", "libnacl", "pyopenssl"], version = "^2.14.0"}
asyncssh = {extras = ["bcrypt", "libnacl", "pyopenssl"], version = "^2.14.0"}
bcrypt = "^4.0.1"
fido2 = "^1.1.2"
libsodium = "^2.6.1"
pyopenssl = "^23.2.0"

Expand Down

0 comments on commit aaf869d

Please sign in to comment.