github-org-manager 0.1.0__tar.gz → 0.2.0__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.1
2
2
  Name: github-org-manager
3
- Version: 0.1.0
3
+ Version: 0.2.0
4
4
  Summary: Manage a GitHub Organization, its teams, repository permissions, and more
5
5
  Author: Max Mehl
6
6
  Author-email: max.mehl@deutschebahn.com
@@ -11,7 +11,6 @@ Classifier: Programming Language :: Python :: 3.11
11
11
  Classifier: Programming Language :: Python :: 3.12
12
12
  Requires-Dist: pygithub (>=2.3.0,<3.0.0)
13
13
  Requires-Dist: pyyaml (>=6.0.1,<7.0.0)
14
- Requires-Dist: tqdm (>=4.66.2,<5.0.0)
15
14
  Description-Content-Type: text/markdown
16
15
 
17
16
  <!--
@@ -22,7 +21,10 @@ SPDX-License-Identifier: Apache-2.0
22
21
 
23
22
  # GitHub Organization Manager
24
23
 
24
+ [![Test suites](https://github.com/OpenRailAssociation/github-org-manager/actions/workflows/test.yaml/badge.svg)](https://github.com/OpenRailAssociation/github-org-manager/actions/workflows/test.yaml)
25
25
  [![REUSE status](https://api.reuse.software/badge/github.com/OpenRailAssociation/github-org-manager)](https://api.reuse.software/info/github.com/OpenRailAssociation/github-org-manager)
26
+ [![The latest version of GitHub Org Manager can be found on PyPI.](https://img.shields.io/pypi/v/github-org-manager.svg)](https://pypi.org/project/github-org-manager/)
27
+ [![Information on what versions of Python GitHub Org Manager supports can be found on PyPI.](https://img.shields.io/pypi/pyversions/github-org-manager.svg)](https://pypi.org/project/github-org-manager/)
26
28
 
27
29
  A lightweight tool that helps with managing a GitHub organization, its members, teams, repository permissions and more.
28
30
 
@@ -6,7 +6,10 @@ SPDX-License-Identifier: Apache-2.0
6
6
 
7
7
  # GitHub Organization Manager
8
8
 
9
+ [![Test suites](https://github.com/OpenRailAssociation/github-org-manager/actions/workflows/test.yaml/badge.svg)](https://github.com/OpenRailAssociation/github-org-manager/actions/workflows/test.yaml)
9
10
  [![REUSE status](https://api.reuse.software/badge/github.com/OpenRailAssociation/github-org-manager)](https://api.reuse.software/info/github.com/OpenRailAssociation/github-org-manager)
11
+ [![The latest version of GitHub Org Manager can be found on PyPI.](https://img.shields.io/pypi/v/github-org-manager.svg)](https://pypi.org/project/github-org-manager/)
12
+ [![Information on what versions of Python GitHub Org Manager supports can be found on PyPI.](https://img.shields.io/pypi/pyversions/github-org-manager.svg)](https://pypi.org/project/github-org-manager/)
10
13
 
11
14
  A lightweight tool that helps with managing a GitHub organization, its members, teams, repository permissions and more.
12
15
 
@@ -67,7 +67,7 @@ def _find_matching_files(directory: str, pattern: str, only_one: bool = False) -
67
67
  logging.error(
68
68
  "No configuration file found for '%s' in '%s'. The program might not work as expected!",
69
69
  pattern,
70
- directory
70
+ directory,
71
71
  )
72
72
 
73
73
  return matching_files
@@ -4,7 +4,7 @@
4
4
 
5
5
  [tool.poetry]
6
6
  name = "github-org-manager"
7
- version = "0.1.0"
7
+ version = "0.2.0"
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"
@@ -17,7 +17,6 @@ gh-org-mgr = 'gh_org_mgr.manage:main'
17
17
  python = "^3.10"
18
18
  pygithub = "^2.3.0"
19
19
  pyyaml = "^6.0.1"
20
- tqdm = "^4.66.2"
21
20
 
22
21
  [tool.poetry.group.dev.dependencies]
23
22
  black = "^24.3.0"
@@ -25,7 +24,6 @@ isort = "^5.13.2"
25
24
  mypy = "^1.9.0"
26
25
  pylint = "^3.1.0"
27
26
  types-pyyaml = "^6.0.12.20240311"
28
- types-tqdm = "^4.66.0.20240106"
29
27
 
30
28
  [build-system]
31
29
  requires = ["poetry-core"]
@@ -42,3 +40,7 @@ line-length = 100
42
40
  # MYPY settings
43
41
  [tool.mypy]
44
42
  files = ["gh_org_mgr/*.py"]
43
+
44
+ # Pylint
45
+ [tool.pylint.'MESSAGES CONTROL']
46
+ disable = "fixme"