pygitpub 0.0.45__tar.gz → 0.0.46__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: pygitpub
3
- Version: 0.0.45
3
+ Version: 0.0.46
4
4
  Summary: Pygitpub will help you work with github
5
5
  Home-page: https://veltzer.github.io/pygitpub
6
6
  Download-URL: https://github.com/veltzer/pygitpub
@@ -42,6 +42,6 @@ project website: https://veltzer.github.io/pygitpub
42
42
 
43
43
  author: Mark Veltzer
44
44
 
45
- version: 0.0.45
45
+ version: 0.0.46
46
46
 
47
47
  Mark Veltzer <mark.veltzer@gmail.com>, Copyright © 2022, 2023
@@ -12,6 +12,6 @@ project website: https://veltzer.github.io/pygitpub
12
12
 
13
13
  author: Mark Veltzer
14
14
 
15
- version: 0.0.45
15
+ version: 0.0.46
16
16
 
17
17
  Mark Veltzer <mark.veltzer@gmail.com>, Copyright © 2022, 2023
@@ -33,7 +33,7 @@ class ConfigAlgo(Config):
33
33
  )
34
34
  fork = ParamCreator.create_bool(
35
35
  help_string="Include forks?",
36
- default=False,
36
+ default=True,
37
37
  )
38
38
  dryrun = ParamCreator.create_bool(
39
39
  help_string="Do a try run?",
@@ -1,5 +1,5 @@
1
1
  """ version which can be consumed from within the module """
2
- VERSION_STR = "0.0.45"
2
+ VERSION_STR = "0.0.46"
3
3
  DESCRIPTION = "Pygitpub will help you work with github"
4
4
  APP_NAME = "pygitpub"
5
5
  LOGGER_NAME = "pygitpub"
@@ -27,4 +27,4 @@ def delete(workflow_run):
27
27
 
28
28
 
29
29
  def get_all_git_repos() -> set[str]:
30
- return {os.path.dirname(x) for x in glob.glob("*/*/*.git")}
30
+ return {os.path.dirname(x) for x in glob.glob("*/*/.git")}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pygitpub
3
- Version: 0.0.45
3
+ Version: 0.0.46
4
4
  Summary: Pygitpub will help you work with github
5
5
  Home-page: https://veltzer.github.io/pygitpub
6
6
  Download-URL: https://github.com/veltzer/pygitpub
@@ -42,6 +42,6 @@ project website: https://veltzer.github.io/pygitpub
42
42
 
43
43
  author: Mark Veltzer
44
44
 
45
- version: 0.0.45
45
+ version: 0.0.46
46
46
 
47
47
  Mark Veltzer <mark.veltzer@gmail.com>, Copyright © 2022, 2023
@@ -9,7 +9,7 @@ def get_readme():
9
9
  setuptools.setup(
10
10
  # the first three fields are a must according to the documentation
11
11
  name="pygitpub",
12
- version="0.0.45",
12
+ version="0.0.46",
13
13
  packages=[
14
14
  "pygitpub",
15
15
  ],
File without changes
File without changes
File without changes