From b6fbd2e1951ccccc0da557bf2698720595ab91e4 Mon Sep 17 00:00:00 2001 From: Justintime50 <39606064+Justintime50@users.noreply.github.com> Date: Sat, 26 Aug 2023 22:30:23 -0600 Subject: [PATCH] fix: pygithub pin --- CHANGELOG.md | 4 ++++ github_archive/_version.py | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 89a6463..50514f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## v6.1.1 (2023-08-26) + +- Fixes PyGithub pinned version to ensure `Auth` is available + ## v6.1.0 (2023-08-24) - Allows the tool to be run without passing any authentication flags (previously, to use unauthenticated, you'd have to at least pass the `--https` flag) diff --git a/github_archive/_version.py b/github_archive/_version.py index 7856d12..7f8a859 100644 --- a/github_archive/_version.py +++ b/github_archive/_version.py @@ -1 +1 @@ -__version__ = "6.1.0" +__version__ = "6.1.1" diff --git a/setup.py b/setup.py index a13a364..0d45189 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ raise RuntimeError('Unable to find version string!') REQUIREMENTS = [ - 'PyGithub == 1.*', + 'PyGithub >= 1.59.0', 'woodchips == 1.*', ]