Skip to content

Commit

Permalink
chore: update Poetry lock file and package versions
Browse files Browse the repository at this point in the history
Update the Poetry lock file to reflect the use of Poetry 1.8.3 instead of 1.8.2.
Also, bump the version of the "requests" package from 2.32.0 to 2.32.2.

- Updated generated poetry.lock for Poetry version change
- Increased "requests" package version from 2.32.0 to 2.32..
  • Loading branch information
25077667 committed May 22, 2024
1 parent 59e0e22 commit 4e31755
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
8 changes: 4 additions & 4 deletions poetry.lock

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

2 changes: 2 additions & 0 deletions src/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
"""Version of the package."""

__version__ = "1.0.1"
4 changes: 2 additions & 2 deletions src/git_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ def check_git_config(repo: Repo):
if not os.path.exists(ssh_key_path):
logger.warning("SSH key not found.")
print(
"Please generate one using the following command and add it to your SSH agent and GitHub account:"
"Please generate one using the following command and add it to "
+ "your SSH agent and GitHub account:"
)
print(" ssh-keygen -t rsa -b 4096 -C 'your.email@example.com'")

Expand All @@ -98,7 +99,6 @@ def commit_full_text_message(repo_path: str, message: str) -> str:
sys.exit(1)


# get git core editor, if not set, use vim
def get_git_editor() -> str:
"""
Get the configured git editor or use 'vim' as the default.
Expand Down
1 change: 0 additions & 1 deletion src/user_interaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
General utility functions for user interaction.
"""

import os
import tempfile
import subprocess
from .git_utils import get_git_editor
Expand Down

0 comments on commit 4e31755

Please sign in to comment.