]> git.ipfire.org Git - thirdparty/babel.git/commitdiff
Drop support for EOL Python 3.6 (#919)
authorAarni Koskela <akx@iki.fi>
Wed, 23 Nov 2022 11:22:01 +0000 (13:22 +0200)
committerGitHub <noreply@github.com>
Wed, 23 Nov 2022 11:22:01 +0000 (13:22 +0200)
.github/workflows/test.yml
docs/dev.rst
setup.py
tox.ini

index f8764b5808b75efeca96a7e529c8b7ce6875ae20..491581677ac092da56996bc377bfb6302f10302e 100644 (file)
@@ -16,7 +16,7 @@ jobs:
     strategy:
       matrix:
         os: ["ubuntu-20.04", "windows-2022", "macos-11"]
-        python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy-3.7"]
+        python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy-3.7"]
     env:
       BABEL_CLDR_NO_DOWNLOAD_PROGRESS: "1"
       BABEL_CLDR_QUIET: "1"
index c3627249c7f564206951fc48028dddfeacec3d7b..1c4453d8e90ad8ef29c625bd1b469e45a19090e3 100644 (file)
@@ -30,7 +30,7 @@ Python Versions
 
 At the moment the following Python versions should be supported:
 
-*   Python 3.6 and up
+*   Python 3.7 and up
 *   PyPy 3.7 and up
 
 Unicode
index 6744277a75015704710fc8ecee710893df5ef4ae..06caa6a64a6c55c062d2fec35d44449b1202fd99 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -47,7 +47,6 @@ setup(
         'Programming Language :: Python',
         'Programming Language :: Python :: 3',
         'Programming Language :: Python :: 3 :: Only',
-        'Programming Language :: Python :: 3.6',
         'Programming Language :: Python :: 3.7',
         'Programming Language :: Python :: 3.8',
         'Programming Language :: Python :: 3.9',
@@ -57,7 +56,7 @@ setup(
         'Programming Language :: Python :: Implementation :: PyPy',
         'Topic :: Software Development :: Libraries :: Python Modules',
     ],
-    python_requires='>=3.6',
+    python_requires='>=3.7',
     packages=['babel', 'babel.messages', 'babel.localtime'],
     include_package_data=True,
     install_requires=[
diff --git a/tox.ini b/tox.ini
index 97b6bc09ceaabbea6cad9bd46f9083283ca5458b..8b640015d8f6f1b81efdbfd58a85f0dedd4aebad 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -1,6 +1,6 @@
 [tox]
 envlist =
-    py{36,37,38,39,310,311}
+    py{37,38,39,310,311}
     pypy3
 
 [testenv]
@@ -22,7 +22,6 @@ passenv =
 [gh-actions]
 python =
     pypy3: pypy3
-    3.6: py36
     3.7: py37
     3.8: py38
     3.9: py39