summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAarni Koskela <akx@iki.fi>2022-11-01 13:44:24 +0200
committerAarni Koskela <akx@iki.fi>2022-11-02 08:34:02 +0200
commitbed2aaaf77210b573d250ada966ce2ae2b1d974a (patch)
tree81e31cca21fa87a1fd50db96c4df79e9a392ab64
parentf7af1b72e765278b3431de3f3b92c6b9a189b18e (diff)
downloadbabel-deprecate-py36.tar.gz
Drop support for EOL Python 3.6deprecate-py36
-rw-r--r--.github/workflows/test.yml2
-rw-r--r--docs/dev.rst2
-rwxr-xr-xsetup.py3
-rw-r--r--tox.ini3
4 files changed, 4 insertions, 6 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index f8764b5..4915816 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -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"
diff --git a/docs/dev.rst b/docs/dev.rst
index c362724..1c4453d 100644
--- a/docs/dev.rst
+++ b/docs/dev.rst
@@ -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
diff --git a/setup.py b/setup.py
index 6744277..06caa6a 100755
--- 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 97b6bc0..8b64001 100644
--- 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