Skip to content

Commit 23b4b17

Browse files
author
Tom Softreck
committed
Release version 0.1.53
1 parent 1ed06d0 commit 23b4b17

17 files changed

+60
-47
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.1.53] - 2025-04-16
6+
57
## [0.1.52] - 2025-04-16
68

79
## [0.1.51] - 2025-04-16

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# Configuration setup
2727
setup(
2828
name="pyfunc2",
29-
version="0.1.50",
29+
version="0.1.51",
3030
description="libs for cameramonit, ocr, fin-officer, cfo, and other projects",
3131
long_description=LONG_DESCRIPTION,
3232
long_description_content_type="text/markdown",

setup.py.bak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ except FileNotFoundError:
2626
# Configuration setup
2727
setup(
2828
name="pyfunc2",
29-
version="0.1.49",
29+
version="0.1.50",
3030
description="libs for cameramonit, ocr, fin-officer, cfo, and other projects",
3131
long_description=LONG_DESCRIPTION,
3232
long_description_content_type="text/markdown",

src/pyfunc2/github/__init__.py

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -3,34 +3,34 @@
33
# Import necessary modules and functions here
44
from .change_default_branch import change_default_branch
55
from .get_domain_from_page import get_domain_from_page
6-
from .update_github_pages import update_github_pages
7-
from .get_param_from_repo import get_param_from_repo
8-
from .enable_github_pages import enable_github_pages
9-
from .clone_repo_from_org import clone_repo_from_org
10-
from .get_repos_from_org import get_repos_from_org
11-
from .get_owner_json import get_owner_json
12-
from .create_notexisting_folder import create_notexisting_folder
13-
from .set_github_pages_domain import set_github_pages_domain
14-
from .rename_branch_on_github import rename_branch_on_github
15-
from .delete_branch_on_github import delete_branch_on_github
16-
from .update_repo_on_github import update_repo_on_github
17-
from .has_valid_credentials import has_valid_credentials
18-
from .create_repo_on_github import create_repo_on_github
19-
from .create_project_in_org import create_project_in_org
20-
from .update_default_branch_on_github import update_default_branch_on_github
21-
from .create_repo_on_github_and_local import create_repo_on_github_and_local
22-
from .set_domain_on_github_org_pages import set_domain_on_github_org_pages
23-
from .update_organization_on_github import update_organization_on_github
24-
from .create_organization_on_github import create_organization_on_github
25-
from .configure_github_pages_branch import set_page_on_github_org_repos
26-
from .update_organization_projects import update_organization_projects
27-
from .new_organization_scenario import new_organization_scenario
28-
from .get_repository_list_wtih_github_pages import get_repository_list_wtih_github_pages
29-
from .create_repo_on_not_git_repo_folder import create_repo_on_not_git_repo_folder
30-
from .getHeaders2 import getHeaders2
31-
from .getHeaders import getHeaders
32-
from .get_repos import get_repos
33-
from .defaults import defaults
6+
#from .update_github_pages import update_github_pages
7+
#from .get_param_from_repo import get_param_from_repo
8+
#from .enable_github_pages import enable_github_pages
9+
#from .clone_repo_from_org import clone_repo_from_org
10+
#from .get_repos_from_org import get_repos_from_org
11+
#from .get_owner_json import get_owner_json
12+
#from .create_notexisting_folder import create_notexisting_folder
13+
#from .set_github_pages_domain import set_github_pages_domain
14+
#from .rename_branch_on_github import rename_branch_on_github
15+
#from .delete_branch_on_github import delete_branch_on_github
16+
#from .update_repo_on_github import update_repo_on_github
17+
#from .has_valid_credentials import has_valid_credentials
18+
#from .create_repo_on_github import create_repo_on_github
19+
#from .create_project_in_org import create_project_in_org
20+
#from .update_default_branch_on_github import update_default_branch_on_github
21+
#from .create_repo_on_github_and_local import create_repo_on_github_and_local
22+
#from .set_domain_on_github_org_pages import set_domain_on_github_org_pages
23+
#from .update_organization_on_github import update_organization_on_github
24+
#from .create_organization_on_github import create_organization_on_github
25+
#from .configure_github_pages_branch import set_page_on_github_org_repos
26+
#from .update_organization_projects import update_organization_projects
27+
#from .new_organization_scenario import new_organization_scenario
28+
#from .get_repository_list_wtih_github_pages import get_repository_list_wtih_github_pages
29+
#from .create_repo_on_not_git_repo_folder import create_repo_on_not_git_repo_folder
30+
#from .getHeaders2 import getHeaders2
31+
#from .getHeaders import getHeaders
32+
#from .get_repos import get_repos
33+
#from .defaults import defaults
3434

3535
# Public API of the package
36-
__all__ = [change_default_branch, get_domain_from_page, update_github_pages, get_param_from_repo, enable_github_pages, clone_repo_from_org, get_repos_from_org, get_owner_json, create_notexisting_folder, set_github_pages_domain, rename_branch_on_github, delete_branch_on_github, update_repo_on_github, has_valid_credentials, create_repo_on_github, create_project_in_org, update_default_branch_on_github, create_repo_on_github_and_local, set_domain_on_github_org_pages, update_organization_on_github, create_organization_on_github, set_page_on_github_org_repos, update_organization_projects, new_organization_scenario, get_repository_list_wtih_github_pages, create_repo_on_not_git_repo_folder, getHeaders2, getHeaders, get_repos, defaults]
36+
__all__ = [change_default_branch, get_domain_from_page]

src/pyfunc2/local/clone_repo.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@
1414

1515
import subprocess
1616
import os
17-
import sys
18-
sys.path.append('../')
19-
from local.folder_exist import folder_exist
17+
from .folder_exist import folder_exist
2018

2119

2220
def clone_repo(clone_url, repo_name, clone_path):

src/pyfunc2/local/clone_repos_from_org.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import sys
22
sys.path.append('../')
3-
from local.folder_exist import folder_exist
3+
from .folder_exist import folder_exist
44

55
def clone_repos_from_org(org_name: object, repos: object, path_folder: object) -> object:
66
if repos:

src/pyfunc2/local/git_folders_in_path.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
import sys
21
import os
32

4-
sys.path.append('../')
5-
from local.folder_exist import folder_exist
3+
from .folder_exist import folder_exist
64

75

86
def git_folders_in_path(path_folder):

src/pyfunc2/local/init_local_repo.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
import sys
21
import os
32

4-
sys.path.append('../')
5-
from local.git_folders_in_path import git_folders_in_path
3+
from .git_folders_in_path import git_folders_in_path
64

75
def init_local_repo(local_path):
86
git_local_repos = git_folders_in_path(local_path)

src/pyfunc2/local/non_git_folders_in_path.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
import sys
21
import os
32

4-
sys.path.append('../')
5-
from local.folder_exist import folder_exist
3+
from .folder_exist import folder_exist
64

75
def non_git_folders_in_path(path_folder):
86
files = os.listdir(path_folder)

src/pyfunc2/local/push_local_repo.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
import sys
21
import os
32

4-
sys.path.append('../')
5-
from local.git_folders_in_path import git_folders_in_path
3+
from .git_folders_in_path import git_folders_in_path
64

75

86
def push_local_repo(local_path):

0 commit comments

Comments
 (0)