github-archive 7.0.3__tar.gz → 7.0.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. {github_archive-7.0.3 → github_archive-7.0.4}/PKG-INFO +2 -2
  2. github_archive-7.0.4/github_archive/_version.py +1 -0
  3. {github_archive-7.0.3 → github_archive-7.0.4}/github_archive.egg-info/PKG-INFO +2 -2
  4. {github_archive-7.0.3 → github_archive-7.0.4}/github_archive.egg-info/requires.txt +1 -1
  5. {github_archive-7.0.3 → github_archive-7.0.4}/pyproject.toml +2 -1
  6. github_archive-7.0.3/github_archive/_version.py +0 -1
  7. {github_archive-7.0.3 → github_archive-7.0.4}/LICENSE +0 -0
  8. {github_archive-7.0.3 → github_archive-7.0.4}/README.md +0 -0
  9. {github_archive-7.0.3 → github_archive-7.0.4}/github_archive/__init__.py +0 -0
  10. {github_archive-7.0.3 → github_archive-7.0.4}/github_archive/archive.py +0 -0
  11. {github_archive-7.0.3 → github_archive-7.0.4}/github_archive/cli.py +0 -0
  12. {github_archive-7.0.3 → github_archive-7.0.4}/github_archive/constants.py +0 -0
  13. {github_archive-7.0.3 → github_archive-7.0.4}/github_archive/gists.py +0 -0
  14. {github_archive-7.0.3 → github_archive-7.0.4}/github_archive/logger.py +0 -0
  15. {github_archive-7.0.3 → github_archive-7.0.4}/github_archive/py.typed +0 -0
  16. {github_archive-7.0.3 → github_archive-7.0.4}/github_archive/repos.py +0 -0
  17. {github_archive-7.0.3 → github_archive-7.0.4}/github_archive.egg-info/SOURCES.txt +0 -0
  18. {github_archive-7.0.3 → github_archive-7.0.4}/github_archive.egg-info/dependency_links.txt +0 -0
  19. {github_archive-7.0.3 → github_archive-7.0.4}/github_archive.egg-info/entry_points.txt +0 -0
  20. {github_archive-7.0.3 → github_archive-7.0.4}/github_archive.egg-info/top_level.txt +0 -0
  21. {github_archive-7.0.3 → github_archive-7.0.4}/setup.cfg +0 -0
  22. {github_archive-7.0.3 → github_archive-7.0.4}/test/unit/__init__.py +0 -0
  23. {github_archive-7.0.3 → github_archive-7.0.4}/test/unit/conftest.py +0 -0
  24. {github_archive-7.0.3 → github_archive-7.0.4}/test/unit/test_archive.py +0 -0
  25. {github_archive-7.0.3 → github_archive-7.0.4}/test/unit/test_gists.py +0 -0
  26. {github_archive-7.0.3 → github_archive-7.0.4}/test/unit/test_logger.py +0 -0
  27. {github_archive-7.0.3 → github_archive-7.0.4}/test/unit/test_repos.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: github-archive
3
- Version: 7.0.3
3
+ Version: 7.0.4
4
4
  Summary: A powerful tool to concurrently clone, pull, or fork user and org repos and gists to create a GitHub archive.
5
5
  Author: Justintime50
6
6
  License: MIT
@@ -8,7 +8,7 @@ Project-URL: Homepage, http://github.com/justintime50/github-archive
8
8
  Requires-Python: >=3.10
9
9
  Description-Content-Type: text/markdown
10
10
  License-File: LICENSE
11
- Requires-Dist: PyGithub==2.9.*
11
+ Requires-Dist: PyGithub==2.8.*
12
12
  Requires-Dist: woodchips==2.*
13
13
  Provides-Extra: dev
14
14
  Requires-Dist: bandit==1.9.*; extra == "dev"
@@ -0,0 +1 @@
1
+ __version__ = "7.0.4"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: github-archive
3
- Version: 7.0.3
3
+ Version: 7.0.4
4
4
  Summary: A powerful tool to concurrently clone, pull, or fork user and org repos and gists to create a GitHub archive.
5
5
  Author: Justintime50
6
6
  License: MIT
@@ -8,7 +8,7 @@ Project-URL: Homepage, http://github.com/justintime50/github-archive
8
8
  Requires-Python: >=3.10
9
9
  Description-Content-Type: text/markdown
10
10
  License-File: LICENSE
11
- Requires-Dist: PyGithub==2.9.*
11
+ Requires-Dist: PyGithub==2.8.*
12
12
  Requires-Dist: woodchips==2.*
13
13
  Provides-Extra: dev
14
14
  Requires-Dist: bandit==1.9.*; extra == "dev"
@@ -1,4 +1,4 @@
1
- PyGithub==2.9.*
1
+ PyGithub==2.8.*
2
2
  woodchips==2.*
3
3
 
4
4
  [dev]
@@ -12,7 +12,8 @@ license = { text = "MIT" }
12
12
  authors = [{ name = "Justintime50" }]
13
13
  urls = { Homepage = "http://github.com/justintime50/github-archive" }
14
14
  scripts = { github-archive = "github_archive.cli:main" }
15
- dependencies = ["PyGithub == 2.9.*", "woodchips == 2.*"]
15
+ # TODO: PyGithub 2.9+ requires `pyjwt[crypto]` which isn't compatible on newer Python versions in Homebrew
16
+ dependencies = ["PyGithub == 2.8.*", "woodchips == 2.*"]
16
17
  optional-dependencies = { dev = [
17
18
  "bandit == 1.9.*",
18
19
  "build == 1.3.*",
@@ -1 +0,0 @@
1
- __version__ = "7.0.3"
File without changes
File without changes
File without changes