Browse Source

Merge pull request #1104 from jelmer/drop-py36

Drop python 3.6
Jelmer Vernooij 2 years ago
parent
commit
39b3f01c04
2 changed files with 2 additions and 10 deletions
  1. 1 8
      .github/workflows/pythontest.yml
  2. 1 2
      setup.cfg

+ 1 - 8
.github/workflows/pythontest.yml

@@ -13,14 +13,7 @@ jobs:
       matrix:
         os: [ubuntu-latest, macos-latest, windows-latest]
         python-version:
-          ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", pypy3]
-        exclude:
-          # sqlite3 exit handling seems to get in the way
-          - os: macos-latest
-            python-version: pypy3
-          # doesn't support passing in bytestrings to os.scandir
-          - os: windows-latest
-            python-version: pypy3
+          ["3.7", "3.8", "3.9", "3.10", "3.11"]
       fail-fast: false
 
     steps:

+ 1 - 2
setup.cfg

@@ -14,7 +14,6 @@ keywords = vcs, git
 classifiers =
     Development Status :: 4 - Beta
     License :: OSI Approved :: Apache Software License
-    Programming Language :: Python :: 3.6
     Programming Language :: Python :: 3.7
     Programming Language :: Python :: 3.8
     Programming Language :: Python :: 3.9
@@ -42,7 +41,7 @@ console_scripts =
     dulwich = dulwich.cli:main
 
 [options]
-python_requires = >=3.6
+python_requires = >=3.7
 packages =
     dulwich
     dulwich.cloud