Skip to content

Commit 67ea2a3

Browse files
committed
Merge remote-tracking branch 'xen0n/ruff-ci'
2 parents 2d04896 + fcc78a9 commit 67ea2a3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+2035
-1136
lines changed

.github/workflows/lint.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Lints
2+
3+
on:
4+
pull_request:
5+
push:
6+
paths-ignore:
7+
- '**.rst'
8+
9+
jobs:
10+
ruff:
11+
runs-on: ubuntu-22.04
12+
13+
steps:
14+
- name: Checkout pygit2
15+
uses: actions/checkout@v4
16+
17+
- name: Set up Python
18+
uses: actions/setup-python@v5
19+
with:
20+
python-version: '3.12'
21+
22+
- name: Install ruff
23+
run: pip install ruff
24+
25+
- name: Check code style with ruff
26+
run: ruff format --diff

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
project = 'pygit2'
2121
copyright = '2010-2024 The pygit2 contributors'
22-
#author = ''
22+
# author = ''
2323

2424
# The full version, including alpha/beta/rc tags
2525
release = '1.14.1'

pygit2/__init__.py

+21-13
Original file line numberDiff line numberDiff line change
@@ -66,15 +66,17 @@
6666

6767

6868
def init_repository(
69-
path: typing.Union[str, bytes, PathLike, None],
70-
bare: bool = False,
71-
flags: enums.RepositoryInitFlag = enums.RepositoryInitFlag.MKPATH,
72-
mode: typing.Union[int, enums.RepositoryInitMode] = enums.RepositoryInitMode.SHARED_UMASK,
73-
workdir_path: typing.Optional[str] = None,
74-
description: typing.Optional[str] = None,
75-
template_path: typing.Optional[str] = None,
76-
initial_head: typing.Optional[str] = None,
77-
origin_url: typing.Optional[str] = None
69+
path: typing.Union[str, bytes, PathLike, None],
70+
bare: bool = False,
71+
flags: enums.RepositoryInitFlag = enums.RepositoryInitFlag.MKPATH,
72+
mode: typing.Union[
73+
int, enums.RepositoryInitMode
74+
] = enums.RepositoryInitMode.SHARED_UMASK,
75+
workdir_path: typing.Optional[str] = None,
76+
description: typing.Optional[str] = None,
77+
template_path: typing.Optional[str] = None,
78+
initial_head: typing.Optional[str] = None,
79+
origin_url: typing.Optional[str] = None,
7880
) -> Repository:
7981
"""
8082
Creates a new Git repository in the given *path*.
@@ -108,8 +110,7 @@ def init_repository(
108110

109111
# Options
110112
options = ffi.new('git_repository_init_options *')
111-
C.git_repository_init_options_init(options,
112-
C.GIT_REPOSITORY_INIT_OPTIONS_VERSION)
113+
C.git_repository_init_options_init(options, C.GIT_REPOSITORY_INIT_OPTIONS_VERSION)
113114
options.flags = int(flags)
114115
options.mode = mode
115116

@@ -143,8 +144,15 @@ def init_repository(
143144

144145

145146
def clone_repository(
146-
url, path, bare=False, repository=None, remote=None,
147-
checkout_branch=None, callbacks=None, depth=0):
147+
url,
148+
path,
149+
bare=False,
150+
repository=None,
151+
remote=None,
152+
checkout_branch=None,
153+
callbacks=None,
154+
depth=0,
155+
):
148156
"""
149157
Clones a new Git repository from *url* in the given *path*.
150158

pygit2/_build.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,5 +70,5 @@ def get_libgit2_paths():
7070
'libraries': ['git2'],
7171
'include_dirs': [str(x) for x in include_dirs],
7272
'library_dirs': [str(x) for x in library_dirs],
73-
}
73+
},
7474
)

0 commit comments

Comments
 (0)