@@ -57,7 +57,7 @@ Python requirements (these are specified in ``setup.py``):
57
57
58
58
- cffi 1.17.0 or later
59
59
60
- Libgit2 **v1.8 .x **; binary wheels already include libgit2, so you only need to
60
+ Libgit2 **v1.9 .x **; binary wheels already include libgit2, so you only need to
61
61
worry about this if you install the source package.
62
62
63
63
Optional libgit2 dependecies to support ssh and https:
@@ -86,6 +86,10 @@ of Python and the required libgit2 version.
86
86
+-----------+----------------+------------+
87
87
| pygit2 | Python | libgit2 |
88
88
+-----------+----------------+------------+
89
+ | 1.17 | 3.10 - 3.13 | 1.9 |
90
+ +-----------+----------------+------------+
91
+ | 1.16 | 3.10 - 3.13 | 1.8 |
92
+ +-----------+----------------+------------+
89
93
| 1.15 | 3.9 - 3.12 | 1.8 |
90
94
+-----------+----------------+------------+
91
95
| 1.14 | 3.9 - 3.12 | 1.7 |
@@ -143,9 +147,9 @@ directory, do:
143
147
144
148
.. code-block :: sh
145
149
146
- $ wget https://github.com/libgit2/libgit2/archive/refs/tags/v1.8.1 .tar.gz -O libgit2-1.8.1 .tar.gz
147
- $ tar xzf libgit2-1.8.1 .tar.gz
148
- $ cd libgit2-1.8.1 /
150
+ $ wget https://github.com/libgit2/libgit2/archive/refs/tags/v1.9.0 .tar.gz -O libgit2-1.9.0 .tar.gz
151
+ $ tar xzf libgit2-1.9.0 .tar.gz
152
+ $ cd libgit2-1.9.0 /
149
153
$ cmake .
150
154
$ make
151
155
$ sudo make install
@@ -227,9 +231,9 @@ Install libgit2 (see we define the installation prefix):
227
231
228
232
.. code-block :: sh
229
233
230
- $ wget https://github.com/libgit2/libgit2/archive/refs/tags/v1.8.1 .tar.gz -O libgit2-1.8.1 .tar.gz
231
- $ tar xzf libgit2-1.8.1 .tar.gz
232
- $ cd libgit2-1.8.1 /
234
+ $ wget https://github.com/libgit2/libgit2/archive/refs/tags/v1.9.0 .tar.gz -O libgit2-1.9.0 .tar.gz
235
+ $ tar xzf libgit2-1.9.0 .tar.gz
236
+ $ cd libgit2-1.9.0 /
233
237
$ cmake . -DCMAKE_INSTALL_PREFIX=$LIBGIT2
234
238
$ cmake --build . --target install
235
239
@@ -286,7 +290,7 @@ variable. The following recipe shows you how to do it from a bash shell:
286
290
.. code-block :: sh
287
291
288
292
$ export LIBGIT2=C:/Dev/libgit2
289
- $ git clone --depth=1 -b v1.8.1 https://github.com/libgit2/libgit2.git
293
+ $ git clone --depth=1 -b v1.9.0 https://github.com/libgit2/libgit2.git
290
294
$ cd libgit2
291
295
$ cmake . -DCMAKE_INSTALL_PREFIX=$LIBGIT2 -G " Visual Studio 14 Win64"
292
296
$ cmake --build . --config release --target install
0 commit comments