Skip to content

Commit eb647ba

Browse files
authored
Drop support for EOL Python 3.6 (#919)
1 parent 5fcc253 commit eb647ba

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
os: ["ubuntu-20.04", "windows-2022", "macos-11"]
19-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy-3.7"]
19+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy-3.7"]
2020
env:
2121
BABEL_CLDR_NO_DOWNLOAD_PROGRESS: "1"
2222
BABEL_CLDR_QUIET: "1"

docs/dev.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Python Versions
3030

3131
At the moment the following Python versions should be supported:
3232

33-
* Python 3.6 and up
33+
* Python 3.7 and up
3434
* PyPy 3.7 and up
3535

3636
Unicode

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ def run(self):
4747
'Programming Language :: Python',
4848
'Programming Language :: Python :: 3',
4949
'Programming Language :: Python :: 3 :: Only',
50-
'Programming Language :: Python :: 3.6',
5150
'Programming Language :: Python :: 3.7',
5251
'Programming Language :: Python :: 3.8',
5352
'Programming Language :: Python :: 3.9',
@@ -57,7 +56,7 @@ def run(self):
5756
'Programming Language :: Python :: Implementation :: PyPy',
5857
'Topic :: Software Development :: Libraries :: Python Modules',
5958
],
60-
python_requires='>=3.6',
59+
python_requires='>=3.7',
6160
packages=['babel', 'babel.messages', 'babel.localtime'],
6261
include_package_data=True,
6362
install_requires=[

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{36,37,38,39,310,311}
3+
py{37,38,39,310,311}
44
pypy3
55

66
[testenv]
@@ -22,7 +22,6 @@ passenv =
2222
[gh-actions]
2323
python =
2424
pypy3: pypy3
25-
3.6: py36
2625
3.7: py37
2726
3.8: py38
2827
3.9: py39

0 commit comments

Comments
 (0)