Skip to content

Commit c9cc3b8

Browse files
authored
GH-49596: [CI][Dev] Pin PyGithub to < 2.9 to fix broken archery (#49597)
### Rationale for this change A new PyGithub release has broken archery: https://github.com/PyGithub/PyGithub/releases/tag/v2.9.0 I tried some quick test error fixes but those are going to require more investigation. ### What changes are included in this PR? Pin PyGithub to < 2.9 so archery doesn't fail. ### Are these changes tested? Yes via CI ### Are there any user-facing changes? No * GitHub Issue: #49596 Authored-by: Raúl Cumplido <raulcumplido@gmail.com> Signed-off-by: Sutou Kouhei <kou@clear-code.com>
1 parent 618d5fb commit c9cc3b8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

dev/archery/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@
3737
'integration': ['cffi', 'numpy'],
3838
'integration-java': ['jpype1'],
3939
'numpydoc': ['numpydoc==1.1.0'],
40-
'release': ['pygithub', jinja_req, 'semver', 'gitpython'],
40+
'release': ['pygithub<2.9.0', jinja_req, 'semver', 'gitpython'],
4141
}
42-
extras['bot'] = extras['crossbow'] + ['pygithub']
42+
extras['bot'] = extras['crossbow'] + ['pygithub<2.9.0']
4343
extras['all'] = list(set(functools.reduce(operator.add, extras.values())))
4444

4545
setup(

0 commit comments

Comments
 (0)