Skip to content

Commit

Permalink
Update dependency versions in requirements.txt
Browse files Browse the repository at this point in the history
In the requirements.txt file, the versions of PyGitHub and pyyaml have been updated from less than 3.0 and 7.0, respectively, to exact versions 2.3.0 and 6.0.1. This is to ensure consistent behavior across different environments.

[release:bugfix]
  • Loading branch information
heitorpolidoro committed Jun 7, 2024
1 parent 942772a commit d446e16
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion githubapp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
from githubapp.config import Config
from githubapp.event_check_run import EventCheckRun

__version__ = "0.28.3"
__version__ = "0.28.4"

__all__ = ["Config", "EventCheckRun"]
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
PyGithub<3.0
pyyaml<7.0
PyGithub==2.3.0
pyyaml==6.0.1

0 comments on commit d446e16

Please sign in to comment.