github-org-manager 0.7.7__tar.gz → 0.7.8__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.4
2
2
  Name: github-org-manager
3
- Version: 0.7.7
3
+ Version: 0.7.8
4
4
  Summary: Manage a GitHub Organization, its teams, repository permissions, and more
5
5
  Keywords: github,github-management,permissions,access-control
6
6
  Author: Max Mehl
@@ -111,7 +111,7 @@ class OrgChanges:
111
111
  def update_repo(self, repo_name: str, **changes: bool | str | list[str]) -> None:
112
112
  """Update team changes."""
113
113
  # Initialise repo if not present
114
- if repo_name not in self.teams:
114
+ if repo_name not in self.repos:
115
115
  self.repos[repo_name] = RepoChanges()
116
116
 
117
117
  implement_changes_into_class(dc_object=self.repos[repo_name], **changes)
@@ -4,7 +4,7 @@
4
4
 
5
5
  [project]
6
6
  name = "github-org-manager"
7
- version = "0.7.7"
7
+ version = "0.7.8"
8
8
  description = "Manage a GitHub Organization, its teams, repository permissions, and more"
9
9
  authors = [{ name = "Max Mehl", email = "max.mehl@deutschebahn.com" }]
10
10
  requires-python = ">=3.10,<4"
@@ -48,7 +48,6 @@ gh-org-mgr = "gh_org_mgr.manage:main"
48
48
  dev = [
49
49
  "ruff>=0.15.10",
50
50
  "ty>=0.0.29",
51
- "bump-my-version>=1.2.3,<2",
52
51
  ]
53
52
 
54
53
  [tool.uv]
@@ -87,30 +86,3 @@ convention = "google"
87
86
  # TY settings
88
87
  [tool.ty.src]
89
88
  include = ["gh_org_mgr"]
90
-
91
- # Bump-My-Version
92
- [tool.bumpversion]
93
- commit = true
94
- tag = true
95
- sign_tags = true
96
- allow_dirty = false
97
- tag_name = "v{new_version}"
98
-
99
- [[tool.bumpversion.files]]
100
- filename = "pyproject.toml"
101
- regex = true
102
- search = "^version = \"{current_version}\""
103
- replace = "version = \"{new_version}\""
104
-
105
- [[tool.bumpversion.files]]
106
- filename = "uv.lock"
107
- search = """
108
- [[package]]
109
- name = "github-org-manager"
110
- version = "{current_version}"
111
- """
112
- replace = """
113
- [[package]]
114
- name = "github-org-manager"
115
- version = "{new_version}"
116
- """