Skip to content

Commit f19e103

Browse files
authored
Merge pull request #606 from Ouranosinc/maintenance-update
2 parents 9bb053a + c59b2c9 commit f19e103

8 files changed

+57
-84
lines changed

.github/workflows/tests.yml

+1-15
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
matrix:
4949
# os: [ubuntu-latest, windows-latest]
5050
os: [ubuntu-latest]
51-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
51+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
5252
allow-failure: [false]
5353
test-case: [test-local]
5454
# can use below option to set environment variables or makefile settings applied during test execution
@@ -77,20 +77,6 @@ jobs:
7777
python-version: none
7878
allow-failure: true
7979
test-case: test-docker
80-
# test allowed failing for legacy versions
81-
- os: ubuntu-20.04
82-
python-version: "3.5"
83-
allow-failure: true
84-
test-case: test-local
85-
- os: ubuntu-20.04
86-
python-version: "3.6"
87-
allow-failure: true
88-
test-case: test-local
89-
# test allowed failing for recent versions
90-
# - os: ubuntu-latest
91-
# python-version: 3.12
92-
# allow-failure: true
93-
# test-case: test-local
9480
steps:
9581
- uses: actions/checkout@v2
9682
with:

CHANGES.rst

+14
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,20 @@ Changes
99
`Unreleased <https://github.com/Ouranosinc/Magpie/tree/master>`_ (latest)
1010
------------------------------------------------------------------------------------
1111

12+
Features / Changes
13+
~~~~~~~~~~~~~~~~~~~~~
14+
15+
* | Add support of Python 3.12.
16+
|
17+
| **NOTE**:
18+
| Requires patch of ``authomatic.six.moves`` in ``magpie.__init__.py`` to work around vendor-specific definitions.
19+
Fix inspiration
20+
from `dpkp/kafka-python#2401 <https://github.com/dpkp/kafka-python/issues/2401#issuecomment-1760208950>`_.
21+
Pending official fix (see `authomatic/authomatic#233 <https://github.com/authomatic/authomatic/issues/233>`_).
22+
23+
* Drop support of Python 3.5, 3.6 and 3.7. Minimum version is Python 3.8.
24+
* Pin ``gunicorn>=22`` to address CVE-2024-1135.
25+
1226
Bug Fixes
1327
~~~~~~~~~
1428

magpie/__init__.py

+10
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@
77

88
import sys
99

10+
# FIXME: patch workaround for Python 3.12 issue with vendor-specific 'six.moves'
11+
# Inspired from https://github.com/dpkp/kafka-python/issues/2401#issuecomment-1760208950
12+
# Applied here such that anything importing 'magpie' does it first, to avoid patch everywhere importing 'authomatic'.
13+
# Official fix required (see https://github.com/authomatic/authomatic/issues/233).
14+
if sys.version_info >= (3, 12, 0):
15+
import six
16+
sys.modules["authomatic.six.moves"] = six.moves
17+
sys.modules["authomatic.six.moves.urllib"] = six.moves.urllib
18+
sys.modules["authomatic.six.moves.urllib.parse"] = six.moves.urllib.parse
19+
1020

1121
def includeme(config):
1222
# import needs to be here, otherwise ImportError happens during setup.py install (modules not yet installed)

requirements-dev.txt

+9-23
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,21 @@
11
-r requirements-sys.txt
22
-r requirements-doc.txt
3-
autopep8; python_version < "3"
4-
autopep8>=1.5.4; python_version >= "3.6"
5-
backports.tempfile; python_version < "3"
6-
bandit==1.7.1; python_version < "3.7" # pyup: ignore
7-
bandit==1.7.5; python_version == "3.7" # pyup: ignore
8-
bandit==1.7.7; python_version >= "3.8"
3+
autopep8>=1.5.4
4+
bandit==1.7.7
95
bump2version==1.0.1
106
codacy-coverage>=1.3.11
11-
coverage==5.5; python_version < "3" # pyup: ignore
12-
coverage>=5.5; python_version >= "3"
13-
doc8; python_version < "3.6"
14-
doc8>=0.8; python_version >= "3.6"
15-
docformatter==1.4; python_version < "3.6" # pyup: ignore
16-
docformatter; python_version >= "3.6"
7+
coverage>=5.5
8+
doc8>=0.8
9+
docformatter
1710
flake8
18-
# Fix for https://github.com/PyCQA/flake8/issues/1701
19-
importlib-metadata>=1.1.0,<4.3; python_version < "3.8"
20-
isort; python_version < "3.6"
21-
isort>5.5,!=5.11.0; python_version >= "3.6"
22-
mock; python_version < "3.6"
23-
mock>4; python_version >= "3.6"
24-
pylint<2.7; python_version < "3.6" # pyup: ignore
11+
isort>5.5,!=5.11.0
12+
mock>4
2513
# ignore 2.12 bad docstring asterisks args handling (https://github.com/PyCQA/pylint/issues/5406)
26-
pylint>=2.11,!=2.12,!=2.15; python_version >= "3.6"
14+
pylint>=2.11,!=2.12,!=2.15
2715
pylint-quotes
2816
# bird-house/twticher, must match version in Dockerfile.adapater
29-
pyramid-twitcher>=0.5.3; python_version < "3.6" # pyup: ignore
30-
pyramid-twitcher>=0.9.0; python_version >= "3.6"
17+
pyramid-twitcher>=0.9.0
3118
pytest
32-
python2-secrets; python_version <= "3.5"
3319
safety
3420
tox>=3.0
3521
webtest

requirements-doc.txt

+5-10
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,11 @@
33
# we actually need to install all requirements during docs build because of OpenAPI generation
44
# (see 'docs/conf.py')
55
astroid<2.12 # pin to resolve sphinx-autoapi (see https://github.com/readthedocs/sphinx-autoapi/issues/349)
6-
pycodestyle>=2.6.0,<2.9.0; python_version <= "3.5" # pyup: ignore
7-
pycodestyle>=2.6.0,<3; python_version >= "3.6"
6+
pycodestyle>=2.6.0,<3
87
# sphinx-autoapi dropped 3.5 support at 1.3.0
98
# latest to fullfil requirements, but that is not the main doc builder version
10-
sphinx-autoapi; python_version < "3.6"
11-
sphinx-autoapi>=1.7.0; python_version >= "3.6"
12-
sphinx-paramlinks>=0.4.1,<0.5; python_version < "3"
13-
sphinx-paramlinks>=0.4.1; python_version >= "3"
14-
sphinx; python_version < "3"
15-
sphinx>=3.1,<8; python_version >= "3"
9+
sphinx-autoapi>=1.7.0
10+
sphinx-paramlinks>=0.4.1
11+
sphinx>=5.3,<8
1612
sphinxcontrib-redoc>=1.6.0
17-
sphinx_autodoc_typehints[type_comments]; python_version < "3.6"
18-
sphinx_autodoc_typehints[type_comments]>=1.11.0; python_version >= "3.6"
13+
sphinx_autodoc_typehints[type_comments]>=1.11.0

requirements-sys.txt

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
pip
2-
setuptools<60; python_version <= "3.6" # pyup: ignore
3-
setuptools>=65.5.1; python_version >= "3.7"
2+
setuptools>=65.5.1

requirements.txt

+16-31
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,26 @@
11
-r requirements-sys.txt
2-
aenum; python_version < "3.6"
3-
alembic>=1.3.0,<1.5; python_version <= "3.6"
4-
alembic>=1.10; python_version >= "3.7"
2+
alembic>=1.10
53
# TODO: remove when merged
64
# until fix merged and deployed (https://github.com/authomatic/authomatic/pull/195)
75
# old variants:
86
# -e git+https://github.com/fmigneault/authomatic.git@httplib-port#egg=Authomatic
97
# https://github.com/fmigneault/authomatic/archive/httplib-port.zip#egg=Authomatic-1.0.1
10-
# new authomatic handles openid install correctly
11-
# leave http port until merged:
8+
# - new authomatic handles openid install correctly
9+
# - https://github.com/authomatic/authomatic/tree/master includes #195 (http-po#rt)
10+
# via https://github.com/authomatic/authomatic/pull/227
11+
# However, this is not the latest tag https://github.com/authomatic/authomatic/tree/1.2.1 (done before #227).
12+
# - Requires https://github.com/authomatic/authomatic/issues/233 for Python 3.12 (temporary patch in magpie.__init__)
1213
authomatic[OpenID] @ https://github.com/fmigneault/authomatic/archive/httplib-port.zip
1314
bcrypt>=3.1.6
1415
# FIXME: integrate when implemnted by official package (see https://github.com/bbangert/beaker/issues/201)
1516
beaker @ https://github.com/crim-ca/beaker/archive/0ac88bcd8cca063a571fc385ffbe9bcc8acaa690.zip
1617
colander
17-
cornice<5; python_version < "3"
18-
cornice; python_version >= "3.6"
19-
cornice<6.1; python_version == "3.5"
18+
cornice
2019
cornice_swagger>=0.7.0
2120
dicttoxml
22-
# futures is required for gunicorn threads
23-
futures; python_version < "3"
24-
# flag --paste breaks for >20, must use pserve instead
25-
gunicorn<20; python_version < "3.5" # pyup: ignore
26-
gunicorn>=20; python_version >= "3"
21+
gunicorn>=22
2722
humanize
28-
jsonschema<4; python_version < "3.6"
29-
jsonschema>=4; python_version >= "3.6"
23+
jsonschema>=4
3024
lxml>=3.7
3125
mako # controlled by pyramid_mako
3226
paste
@@ -40,29 +34,20 @@ pyramid_mako>=1.0.2
4034
pyramid_retry==2.1.1
4135
pyramid_tm>=2.2.1
4236
python-dotenv
43-
python2-secrets; python_version <= "3.5"
4437
pyyaml>=5.1
4538
requests
4639
requests_file
4740
simplejson
4841
six>=1.12.0
49-
# see also: safety 51668, https://github.com/sqlalchemy/sqlalchemy/pull/8563, still beta + major version change 2.0.0b1
50-
sqlalchemy==1.3.*; python_version <= "3.6" # pyup: ignore
51-
sqlalchemy>=1.4.44,<2; python_version >= "3.7" # pyup: ignore
42+
# see also: safety 51668, https://github.com/sqlalchemy/sqlalchemy/pull/8563
43+
sqlalchemy>=1.4.44,<2 # pyup: ignore
5244
# see also: safety 42194, https://github.com/kvesteri/sqlalchemy-utils/issues/166, not fixed since 2015
53-
sqlalchemy-utils<0.36.4; python_version < "3" # pyup: ignore
54-
sqlalchemy-utils==0.37.9; python_version >= "3" and python_version <= "3.5" # pyup: ignore
55-
sqlalchemy-utils==0.39.0; python_version >= "3.6" # pyup: ignore
56-
threddsclient==0.4.2; python_version < "3" # pyup: ignore
57-
threddsclient>=0.4.2; python_version >= "3"
45+
sqlalchemy-utils==0.39.0 # pyup: ignore
46+
threddsclient>=0.4.2
5847
transaction
59-
typing; python_version < "3"
60-
# typing extension required for TypedDict
61-
typing_extensions; python_version < "3.8"
62-
wheel; python_version <= "3.6"
63-
wheel>=0.38; python_version >= "3.7"
48+
typing_extensions
49+
wheel>=0.38
6450
webob
65-
ziggurat_foundations==0.8.4; python_version <= "3.6" # pyup: ignore
66-
ziggurat_foundations==0.9.1; python_version >= "3.7"
51+
ziggurat_foundations==0.9.1
6752
zope.interface>=4.7.2,<5
6853
zope.sqlalchemy==1.6

setup.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -211,13 +211,11 @@ def _extra_requirements(base_requirements, other_requirements):
211211
"License :: OSI Approved :: Apache Software License",
212212
"Natural Language :: English",
213213
"Programming Language :: Python :: 3",
214-
"Programming Language :: Python :: 3.5",
215-
"Programming Language :: Python :: 3.6",
216-
"Programming Language :: Python :: 3.7",
217214
"Programming Language :: Python :: 3.8",
218215
"Programming Language :: Python :: 3.9",
219216
"Programming Language :: Python :: 3.10",
220217
"Programming Language :: Python :: 3.11",
218+
"Programming Language :: Python :: 3.12",
221219
],
222220
python_requires=">=3.5, <4",
223221

0 commit comments

Comments
 (0)