github-org-manager 0.7.1__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: github-org-manager
3
- Version: 0.7.1
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.3.0,<3.0.0)
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.1,<7.0.0)
25
- Requires-Dist: requests (>=2.32.3,<3.0.0)
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.1"
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.3.0"
31
- pyyaml = "^6.0.1"
32
- requests = "^2.32.3"
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]
@@ -39,7 +39,7 @@ mypy = "^1.9.0"
39
39
  pylint = "^3.1.0"
40
40
  types-pyyaml = "^6.0.12.20240311"
41
41
  types-requests = "^2.32.0.20240712"
42
- bump-my-version = "^1.0.0"
42
+ bump-my-version = "^1.1.2"
43
43
 
44
44
  [build-system]
45
45
  requires = ["poetry-core"]