Skip to content
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
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
Vertex Common Tools Changelog
*****************************

v0.2.1 - 2025-10-12
===================

Features and Enhancements
-------------------------
- Updated version constraint for ``PyGithub`` to allow recent versions.

v0.2.0 - 2025-07-11
===================

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PyGithub==1.53
PyGithub>=2.8.1,<3.0.0
PyYAML
bump2version>=1.0.1,<2.0.0
pytest
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def run(self):
include_package_data=True,
python_requires='>=3.11',
install_requires=[
'PyGithub==1.53',
'PyGithub>=2.8.1,<3.0.0',
'PyYAML',
'bump2version>=1.0.1,<2.0.0',
'pytest',
Expand Down
2 changes: 1 addition & 1 deletion vtx_common/tools/github_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ def main(argv):

return 0

gh = github.Github(gh_token)
gh = github.Github(auth=github.Auth.Token(gh_token))

logger.info(f'Getting github repo for {gh_repo_path}')
repo = gh.get_repo(gh_repo_path)
Expand Down