Skip to content
This repository was archived by the owner on Jan 22, 2025. It is now read-only.

Commit 03dddf7

Browse files
Try to fix the CI (#65)
2 parents 76609d2 + 8883ff5 commit 03dddf7

File tree

9 files changed

+23
-192
lines changed

9 files changed

+23
-192
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ var/
1616
.installed.cfg
1717
*.egg
1818
*.manifest
19+
.DS_Store
1920
*.spec
2021
pip-log.txt
2122
pip-delete-this-directory.txt

ci/config/requirements.txt

+14-22
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,16 @@
1-
apispec-webframeworks==0.5.2
2-
apispec==6.0.2
3-
build==0.9.0
4-
decorator==5.1.1
5-
flake8==3.8.4
6-
flask-restful==0.3.9
7-
flex==6.14.1
8-
marshmallow==3.10.0
9-
mypy==0.942
10-
pep8==1.7.1
11-
pylint==2.15.8
12-
pytest-cov==4.0.0
13-
pytest==7.2.0
14-
safety==2.3.5
1+
build
2+
decorator
3+
flake8
4+
flask-restful
5+
flex
6+
marshmallow
7+
mypy
8+
pep8
9+
pylint
10+
pytest-cov
11+
pytest
12+
safety
1513
setuptools
16-
twine==4.0.2
17-
types-PyYAML==6.0.7
18-
types-six==1.16.21.4
19-
wheel==0.38.1
20-
babel==2.9.1
21-
twisted==22.10.0
22-
pyjwt==2.4.0
23-
oauthlib==3.2.1
14+
twine
15+
wheel
2416
-e .

ci/scripts/setup_worker.sh

-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,3 @@ REPO=$(dirname "$REPO../")
99

1010
python3 -m pip install --upgrade pip
1111
python3 -m pip install -r $REPO/ci/config/requirements.txt
12-
python3 -m pip install -r $REPO/requirements.txt

ci/tests/suite/test_lazy_string.py

-104
This file was deleted.

pyproject.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,23 @@ requires-python = ">=3.6.1"
1010
authors = [{ name = "Overflow Digital", email = "[email protected]" }]
1111
maintainers = [
1212
{ name = "Katerina Tiddy", email = "[email protected]" },
13-
{ name = "Joshua Thompson-Lindley", email = "[email protected]" }
13+
{ name = "Joshua Thompson-Lindley", email = "[email protected]" },
1414
]
1515
description = "Next generation OpenAPI v3 Integration for Flask based APIs. Based on Flasgger."
1616
readme = "README.md"
1717
classifiers = [
1818
"Development Status :: 5 - Production/Stable",
1919
"Intended Audience :: Developers",
2020
"Programming Language :: Python :: 3",
21-
"Programming Language :: Python :: 3.6"
21+
"Programming Language :: Python :: 3.6",
2222
]
2323
keywords = ['flask', 'swagger', 'openapi', 'python', 'api', 'rest', 'openapi3']
2424
dependencies = [
2525
"Flask>=2.3.1",
2626
"PyYAML>=6.0",
27-
"jsonschema>=4.17.3",
28-
"mistune>=2.0.4",
29-
"six>=1.16.0"
27+
"jsonschema>=4.19.0",
28+
"mistune>=3.0.0",
29+
"six>=1.16.0",
3030
]
3131

3232
[project.urls]
@@ -55,7 +55,7 @@ include = ['flask_openapi*']
5555
"*.gif",
5656
"*.ico",
5757
"*.png",
58-
"*.map"
58+
"*.map",
5959
]
6060

6161
[tool.setuptools.dynamic]

requirements.txt

-6
This file was deleted.

src/flask_openapi/__init__.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,10 @@
88
from .base import (
99
BR_SANITIZER,
1010
Flasgger,
11-
LazyJSONEncoder, # noqa
1211
MK_SANITIZER,
1312
NO_SANITIZER,
1413
Swagger,
1514
)
1615
from .constants import OPTIONAL_FIELDS # noqa
1716
from .marshmallow_apispec import APISpec, fields, Schema, SwaggerView # noqa
18-
from .utils import apispec_to_template, LazyString, swag_from, validate # noqa
17+
from .utils import apispec_to_template, swag_from, validate # noqa

src/flask_openapi/base.py

+1-9
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
Blueprint,
2222
current_app,
2323
jsonify,
24-
Markup,
2524
redirect,
2625
render_template,
2726
request,
@@ -31,6 +30,7 @@
3130
from json import JSONEncoder
3231
from flask.views import MethodView
3332
from werkzeug.datastructures import Authorization
33+
from markupsafe import Markup
3434

3535
try:
3636
from flask_restful.reqparse import RequestParser
@@ -49,7 +49,6 @@
4949
get_specs,
5050
get_vendor_extension_fields,
5151
is_openapi3,
52-
LazyString,
5352
parse_definition_docstring,
5453
parse_imports,
5554
swag_annotation,
@@ -978,10 +977,3 @@ def is_openapi3(self):
978977

979978
# backwards compatibility
980979
Flasgger = Swagger # noqa
981-
982-
983-
class LazyJSONEncoder(JSONEncoder):
984-
def default(self, obj):
985-
if isinstance(obj, LazyString):
986-
return str(obj)
987-
return super(LazyJSONEncoder, self).default(obj)

src/flask_openapi/utils.py

-42
Original file line numberDiff line numberDiff line change
@@ -927,48 +927,6 @@ def __ge__(self, other):
927927
def text_type(self):
928928
return text_type
929929

930-
931-
class LazyString(StringLike):
932-
"""
933-
A lazy string *without* caching. The resulting string is regenerated for
934-
every request.
935-
"""
936-
937-
def __init__(self, func):
938-
"""
939-
Creates a `LazyString` object using `func` as the delayed closure.
940-
`func` must return a string.
941-
"""
942-
self._func = func
943-
944-
def __str__(self):
945-
"""
946-
Returns the actual string.
947-
"""
948-
return self.text_type(self._func())
949-
950-
951-
class CachedLazyString(LazyString):
952-
"""
953-
A lazy string with caching.
954-
"""
955-
956-
def __init__(self, func):
957-
"""
958-
Uses `__init__()` from the parent and initializes a cache.
959-
"""
960-
super(CachedLazyString, self).__init__(func)
961-
self._cache = None
962-
963-
def __str__(self):
964-
"""
965-
Returns the actual string and caches the result.
966-
"""
967-
if not self._cache:
968-
self._cache = self.text_type(self._func())
969-
return self._cache
970-
971-
972930
def swag_annotation(f):
973931
@wraps(f)
974932
def wrapper(*args, **kwargs):

0 commit comments

Comments
 (0)