Przeglądaj źródła

Add support for python 3.9.

Jelmer Vernooij 5 lat temu
rodzic
commit
285a2e9ed2
3 zmienionych plików z 4 dodań i 3 usunięć
  1. 1 1
      .github/workflows/pythonpackage.yml
  2. 2 2
      README.rst
  3. 1 0
      setup.py

+ 1 - 1
.github/workflows/pythonpackage.yml

@@ -9,7 +9,7 @@ jobs:
     strategy:
     strategy:
       matrix:
       matrix:
         os: [ubuntu-latest, macos-latest, windows-latest]
         os: [ubuntu-latest, macos-latest, windows-latest]
-        python-version: [3.5, 3.6, 3.7, 3.8, pypy3]
+        python-version: [3.5, 3.6, 3.7, 3.8, 3.9, pypy3]
         exclude:
         exclude:
           # sqlite3 exit handling seems to get in the way
           # sqlite3 exit handling seems to get in the way
           - os: macos-latest
           - os: macos-latest

+ 2 - 2
README.rst

@@ -85,8 +85,8 @@ file and `list of open issues <https://github.com/dulwich/dulwich/issues>`_.
 Supported versions of Python
 Supported versions of Python
 ----------------------------
 ----------------------------
 
 
-At the moment, Dulwich supports (and is tested on) CPython 3.5, 3.6,
-3.7, 3.8 and Pypy.
+At the moment, Dulwich supports (and is tested on) CPython 3.5 and later and
+Pypy.
 
 
 The latest release series to support Python 2.x was the 0.19 series. See
 The latest release series to support Python 2.x was the 0.19 series. See
 the 0.19 branch in the Dulwich git repository.
 the 0.19 branch in the Dulwich git repository.

+ 1 - 0
setup.py

@@ -124,6 +124,7 @@ setup(name='dulwich',
           'Programming Language :: Python :: 3.6',
           'Programming Language :: Python :: 3.6',
           'Programming Language :: Python :: 3.7',
           'Programming Language :: Python :: 3.7',
           'Programming Language :: Python :: 3.8',
           'Programming Language :: Python :: 3.8',
+          'Programming Language :: Python :: 3.9',
           'Programming Language :: Python :: Implementation :: CPython',
           'Programming Language :: Python :: Implementation :: CPython',
           'Programming Language :: Python :: Implementation :: PyPy',
           'Programming Language :: Python :: Implementation :: PyPy',
           'Operating System :: POSIX',
           'Operating System :: POSIX',