Skip to content

Commit 4c102b8

Browse files
authored
Merge pull request #172 from TMiguelT/python3
Python 3 and Marshmallow 3
2 parents f4cde00 + 8af8d19 commit 4c102b8

File tree

5 files changed

+252
-186
lines changed

5 files changed

+252
-186
lines changed

.travis.yml

+5-10
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,12 @@
1-
dist: trusty
1+
dist: xenial
22
language: python
33
python:
4-
- '2.7'
5-
- '3.4'
64
- '3.5'
7-
- 'pypy'
8-
install:
9-
- pip install -r requirements.txt
10-
- pip install coveralls coverage
11-
- pip install -U setuptools
12-
- pip install pytest --upgrade
5+
- '3.6'
6+
- '3.7'
7+
- 'pypy3'
138
script:
14-
- python setup.py install
9+
- pip install .[dev]
1510
- coverage run --source flask_rest_jsonapi -m pytest -v
1611
after_success:
1712
- coveralls

flask_rest_jsonapi/resource.py

+7-19
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def get(self, *args, **kwargs):
128128
qs,
129129
qs.include)
130130

131-
result = schema.dump(objects).data
131+
result = schema.dump(objects)
132132

133133
view_kwargs = request.view_args if getattr(self, 'view_kwargs', None) is True else dict()
134134
add_pagination_links(result,
@@ -157,7 +157,7 @@ def post(self, *args, **kwargs):
157157
qs.include)
158158

159159
try:
160-
data, errors = schema.load(json_data)
160+
data = schema.load(json_data)
161161
except IncorrectTypeError as e:
162162
errors = e.messages
163163
for error in errors['errors']:
@@ -171,17 +171,11 @@ def post(self, *args, **kwargs):
171171
message['title'] = "Validation error"
172172
return errors, 422
173173

174-
if errors:
175-
for error in errors['errors']:
176-
error['status'] = "422"
177-
error['title'] = "Validation error"
178-
return errors, 422
179-
180174
self.before_post(args, kwargs, data=data)
181175

182176
obj = self.create_object(data, kwargs)
183177

184-
result = schema.dump(obj).data
178+
result = schema.dump(obj)
185179

186180
if result['data'].get('links', {}).get('self'):
187181
final_result = (result, 201, {'Location': result['data']['links']['self']})
@@ -237,7 +231,7 @@ def get(self, *args, **kwargs):
237231
qs,
238232
qs.include)
239233

240-
result = schema.dump(obj).data
234+
result = schema.dump(obj)
241235

242236
final_result = self.after_get(result)
243237

@@ -260,7 +254,7 @@ def patch(self, *args, **kwargs):
260254
qs.include)
261255

262256
try:
263-
data, errors = schema.load(json_data)
257+
data = schema.load(json_data)
264258
except IncorrectTypeError as e:
265259
errors = e.messages
266260
for error in errors['errors']:
@@ -274,12 +268,6 @@ def patch(self, *args, **kwargs):
274268
message['title'] = "Validation error"
275269
return errors, 422
276270

277-
if errors:
278-
for error in errors['errors']:
279-
error['status'] = "422"
280-
error['title'] = "Validation error"
281-
return errors, 422
282-
283271
if 'id' not in json_data['data']:
284272
raise BadRequest('Missing id in "data" node',
285273
source={'pointer': '/data/id'})
@@ -291,7 +279,7 @@ def patch(self, *args, **kwargs):
291279

292280
obj = self.update_object(data, qs, kwargs)
293281

294-
result = schema.dump(obj).data
282+
result = schema.dump(obj)
295283

296284
final_result = self.after_patch(result)
297285

@@ -375,7 +363,7 @@ def get(self, *args, **kwargs):
375363
schema = compute_schema(self.schema, dict(), qs, qs.include)
376364

377365
serialized_obj = schema.dump(obj)
378-
result['included'] = serialized_obj.data.get('included', dict())
366+
result['included'] = serialized_obj.get('included', dict())
379367

380368
final_result = self.after_get(result)
381369

requirements.txt

-5
This file was deleted.

setup.py

+16-10
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
from setuptools import setup, find_packages
22

3-
43
__version__ = '0.30.1'
54

6-
75
setup(
86
name="Flask-REST-JSONAPI",
97
version=__version__,
@@ -15,23 +13,31 @@
1513
license='MIT',
1614
classifiers=[
1715
'Framework :: Flask',
18-
'Programming Language :: Python :: 2',
19-
'Programming Language :: Python :: 2.7',
2016
'Programming Language :: Python :: 3',
2117
'Programming Language :: Python :: 3.4',
2218
'Programming Language :: Python :: 3.5',
19+
'Programming Language :: Python :: 3.6',
2320
'License :: OSI Approved :: MIT License',
2421
],
2522
keywords='web api rest jsonapi flask sqlalchemy marshmallow',
2623
packages=find_packages(exclude=['tests']),
2724
zip_safe=False,
2825
platforms='any',
29-
install_requires=['six',
30-
'Flask>=0.11',
31-
'marshmallow==2.18.0',
32-
'marshmallow_jsonapi',
33-
'sqlalchemy'],
26+
install_requires=[
27+
'six',
28+
'Flask>=0.11',
29+
'marshmallow>=3.1.0',
30+
'marshmallow_jsonapi>=0.11.0',
31+
'sqlalchemy'
32+
],
3433
setup_requires=['pytest-runner'],
3534
tests_require=['pytest'],
36-
extras_require={'tests': 'pytest', 'docs': 'sphinx'}
35+
extras_require={
36+
'dev': [
37+
'pytest',
38+
'coveralls',
39+
'coverage'
40+
],
41+
'docs': 'sphinx'
42+
}
3743
)

0 commit comments

Comments
 (0)