github-org-manager 0.7.2__tar.gz → 0.7.3__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.
- {github_org_manager-0.7.2 → github_org_manager-0.7.3}/PKG-INFO +4 -4
- {github_org_manager-0.7.2 → github_org_manager-0.7.3}/gh_org_mgr/_gh_org.py +1 -1
- {github_org_manager-0.7.2 → github_org_manager-0.7.3}/pyproject.toml +4 -4
- {github_org_manager-0.7.2 → github_org_manager-0.7.3}/LICENSE.txt +0 -0
- {github_org_manager-0.7.2 → github_org_manager-0.7.3}/LICENSES/Apache-2.0.txt +0 -0
- {github_org_manager-0.7.2 → github_org_manager-0.7.3}/LICENSES/CC-BY-4.0.txt +0 -0
- {github_org_manager-0.7.2 → github_org_manager-0.7.3}/LICENSES/CC0-1.0.txt +0 -0
- {github_org_manager-0.7.2 → github_org_manager-0.7.3}/LICENSES/MIT.txt +0 -0
- {github_org_manager-0.7.2 → github_org_manager-0.7.3}/README.md +0 -0
- {github_org_manager-0.7.2 → github_org_manager-0.7.3}/gh_org_mgr/__init__.py +0 -0
- {github_org_manager-0.7.2 → github_org_manager-0.7.3}/gh_org_mgr/_config.py +0 -0
- {github_org_manager-0.7.2 → github_org_manager-0.7.3}/gh_org_mgr/_gh_api.py +0 -0
- {github_org_manager-0.7.2 → github_org_manager-0.7.3}/gh_org_mgr/_helpers.py +0 -0
- {github_org_manager-0.7.2 → github_org_manager-0.7.3}/gh_org_mgr/_setup_team.py +0 -0
- {github_org_manager-0.7.2 → github_org_manager-0.7.3}/gh_org_mgr/_stats.py +0 -0
- {github_org_manager-0.7.2 → github_org_manager-0.7.3}/gh_org_mgr/manage.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: github-org-manager
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.3
|
|
4
4
|
Summary: Manage a GitHub Organization, its teams, repository permissions, and more
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Keywords: github,github-management,permissions,access-control
|
|
@@ -19,10 +19,10 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.13
|
|
20
20
|
Classifier: Topic :: Software Development :: Version Control :: Git
|
|
21
21
|
Classifier: Topic :: Utilities
|
|
22
|
-
Requires-Dist: pygithub (>=2.
|
|
22
|
+
Requires-Dist: pygithub (>=2.7.0,<3.0.0)
|
|
23
23
|
Requires-Dist: python-slugify (>=8.0.4,<9.0.0)
|
|
24
|
-
Requires-Dist: pyyaml (>=6.0.
|
|
25
|
-
Requires-Dist: requests (>=2.32.
|
|
24
|
+
Requires-Dist: pyyaml (>=6.0.2,<7.0.0)
|
|
25
|
+
Requires-Dist: requests (>=2.32.4,<3.0.0)
|
|
26
26
|
Project-URL: Repository, https://github.com/OpenRailAssociation/github-org-manager
|
|
27
27
|
Description-Content-Type: text/markdown
|
|
28
28
|
|
|
@@ -115,7 +115,7 @@ class GHorg: # pylint: disable=too-many-instance-attributes, too-many-lines
|
|
|
115
115
|
|
|
116
116
|
def ratelimit(self):
|
|
117
117
|
"""Print current rate limit"""
|
|
118
|
-
core = self.gh.get_rate_limit().core
|
|
118
|
+
core = self.gh.get_rate_limit().resources.core
|
|
119
119
|
logging.info(
|
|
120
120
|
"Current rate limit: %s/%s (reset: %s)", core.remaining, core.limit, core.reset
|
|
121
121
|
)
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
[tool.poetry]
|
|
6
6
|
name = "github-org-manager"
|
|
7
|
-
version = "0.7.
|
|
7
|
+
version = "0.7.3"
|
|
8
8
|
description = "Manage a GitHub Organization, its teams, repository permissions, and more"
|
|
9
9
|
authors = ["Max Mehl <max.mehl@deutschebahn.com>"]
|
|
10
10
|
readme = "README.md"
|
|
@@ -27,9 +27,9 @@ gh-org-mgr = 'gh_org_mgr.manage:main'
|
|
|
27
27
|
|
|
28
28
|
[tool.poetry.dependencies]
|
|
29
29
|
python = "^3.10"
|
|
30
|
-
pygithub = "^2.
|
|
31
|
-
pyyaml = "^6.0.
|
|
32
|
-
requests = "^2.32.
|
|
30
|
+
pygithub = "^2.7.0"
|
|
31
|
+
pyyaml = "^6.0.2"
|
|
32
|
+
requests = "^2.32.4"
|
|
33
33
|
python-slugify = "^8.0.4"
|
|
34
34
|
|
|
35
35
|
[tool.poetry.group.dev.dependencies]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|