Skip to content

Commit

Permalink
Fix build error caused by PyGitHub version dependencies changing
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanTAllen committed Apr 29, 2021
1 parent 910ba68 commit 7daf405
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .release-notes/next-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@ Previously, if the bot failed to push its updates, it would create a log message

Now each push and pull attempt will be logged.

## Fix build error coming from PyGitHub dependency

With the release of a new version of PyGitHub, the pynacl dependency changed and no longer builds. We are fine using the previous version of PyGitHub so this update pins us to that version. If we need to upgrade in the future, we'll need to fix the "can't build pynacl" issue.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file. This projec
### Fixed

- Improve logging around multiple push attempts ([PR #35](https://github.com/ponylang/changelog-bot-action/pull/35))
- Fix build error caused by PyGitHub version dependencies changing ([PR #36](https://github.com/ponylang/changelog-bot-action/pull/36))

### Added

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN apk add --update --no-cache \

RUN pip3 install \
gitpython \
PyGithub \
PyGithub==v1.54.1 \
pylint

ENTRYPOINT ["/entrypoint.py"]

0 comments on commit 7daf405

Please sign in to comment.