Skip to content

Commit 9a70340

Browse files
authored
Merge pull request #828 from python-babel/fix-ci-2022
Fix CI, bump year to 2022
2 parents f9b986a + 456569a commit 9a70340

40 files changed

Lines changed: 43 additions & 49 deletions

.github/workflows/test.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [ubuntu-18.04, windows-2019, macos-10.15]
15-
python-version: [3.6, 3.7, 3.8, 3.9, 3.10-dev, pypy3]
16-
exclude:
17-
- os: windows-2019
18-
python-version: pypy3
19-
# TODO: Remove this; see:
20-
# https://github.com/actions/setup-python/issues/151
21-
# https://github.com/tox-dev/tox/issues/1704
22-
# https://foss.heptapod.net/pypy/pypy/-/issues/3331
15+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "pypy3"]
2316
env:
2417
BABEL_CLDR_NO_DOWNLOAD_PROGRESS: "1"
2518
BABEL_CLDR_QUIET: "1"

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2013-2021 by the Babel Team, see AUTHORS for more information.
1+
Copyright (c) 2013-2022 by the Babel Team, see AUTHORS for more information.
22

33
All rights reserved.
44

babel/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
access to various locale display names, localized number and date
1414
formatting, etc.
1515
16-
:copyright: (c) 2013-2021 by the Babel Team.
16+
:copyright: (c) 2013-2022 by the Babel Team.
1717
:license: BSD, see LICENSE for more details.
1818
"""
1919

babel/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Core locale representation and locale data access.
77
8-
:copyright: (c) 2013-2021 by the Babel Team.
8+
:copyright: (c) 2013-2022 by the Babel Team.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111

babel/dates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* ``LC_ALL``, and
1313
* ``LANG``
1414
15-
:copyright: (c) 2013-2021 by the Babel Team.
15+
:copyright: (c) 2013-2022 by the Babel Team.
1616
:license: BSD, see LICENSE for more details.
1717
"""
1818

babel/lists.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* ``LC_ALL``, and
1212
* ``LANG``
1313
14-
:copyright: (c) 2015-2021 by the Babel Team.
14+
:copyright: (c) 2015-2022 by the Babel Team.
1515
:license: BSD, see LICENSE for more details.
1616
"""
1717

babel/localedata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
:note: The `Locale` class, which uses this module under the hood, provides a
99
more convenient interface for accessing the locale data.
1010
11-
:copyright: (c) 2013-2021 by the Babel Team.
11+
:copyright: (c) 2013-2022 by the Babel Team.
1212
:license: BSD, see LICENSE for more details.
1313
"""
1414

babel/localtime/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Babel specific fork of tzlocal to determine the local timezone
77
of the system.
88
9-
:copyright: (c) 2013-2021 by the Babel Team.
9+
:copyright: (c) 2013-2022 by the Babel Team.
1010
:license: BSD, see LICENSE for more details.
1111
"""
1212

babel/messages/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Support for ``gettext`` message catalogs.
77
8-
:copyright: (c) 2013-2021 by the Babel Team.
8+
:copyright: (c) 2013-2022 by the Babel Team.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111

babel/messages/catalog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Data structures for message catalogs.
77
8-
:copyright: (c) 2013-2021 by the Babel Team.
8+
:copyright: (c) 2013-2022 by the Babel Team.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111

0 commit comments

Comments
 (0)