@@ -57,7 +57,7 @@ Python requirements (these are specified in ``setup.py``):
5757
5858- cffi 1.17.0 or later
5959
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
6161worry about this if you install the source package.
6262
6363Optional libgit2 dependecies to support ssh and https:
@@ -86,6 +86,10 @@ of Python and the required libgit2 version.
8686+-----------+----------------+------------+ 
8787|  pygit2    |  Python         |  libgit2    | 
8888+-----------+----------------+------------+ 
89+ |  1.17      |  3.10 - 3.13    |  1.9        | 
90+ +-----------+----------------+------------+ 
91+ |  1.16      |  3.10 - 3.13    |  1.8        | 
92+ +-----------+----------------+------------+ 
8993|  1.15      |  3.9 - 3.12     |  1.8        | 
9094+-----------+----------------+------------+ 
9195|  1.14      |  3.9 - 3.12     |  1.7        | 
@@ -143,9 +147,9 @@ directory, do:
143147
144148.. code-block :: sh 
145149
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 / 
149153   $ cmake .  
150154   $ make 
151155   $ sudo make install 
@@ -227,9 +231,9 @@ Install libgit2 (see we define the installation prefix):
227231
228232.. code-block :: sh 
229233
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 / 
233237   $ cmake .  -DCMAKE_INSTALL_PREFIX=$LIBGIT2  
234238   $ cmake --build .  --target install 
235239
@@ -286,7 +290,7 @@ variable.  The following recipe shows you how to do it from a bash shell:
286290.. code-block :: sh 
287291
288292   $ 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 
290294   $ cd  libgit2 
291295   $ cmake .  -DCMAKE_INSTALL_PREFIX=$LIBGIT2  -G " Visual Studio 14 Win64"  
292296   $ cmake --build .  --config release --target install 
0 commit comments