File tree Expand file tree Collapse file tree 4 files changed +11
-10
lines changed Expand file tree Collapse file tree 4 files changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -29,4 +29,9 @@ History
2929------------------
3030* clean project
3131* drop support for renderers,parsers, and responses
32- * remove deprecated methods
32+ * remove deprecated methods
33+
34+ 0.1.7 (2023-08-19)
35+ ------------------
36+ * pin requirements
37+ * use c extensions
Original file line number Diff line number Diff line change @@ -21,8 +21,6 @@ Overview
2121drf-turbo is a drop-in serializer for Django REST Framework (DRF). drf-turbo serializers run around 7.75 times faster
2222than what what you get from DRF's packaged serializer.
2323
24- **NOTE **: It is written in Cython, which is required to build this package.
25-
2624
2725Requirements
2826------------
Original file line number Diff line number Diff line change 1111from drf_turbo .serializer import BaseSerializer , ModelSerializer , Serializer
1212
1313__author__ = """Michael Gendy"""
14- __email__ = "mngback @gmail.com"
15- __version__ = "0.1.6 "
14+ __email__ = "nagymichel13 @gmail.com"
15+ __version__ = "0.1.7 "
1616
1717__all__ = [
1818 "BaseSerializer" ,
Original file line number Diff line number Diff line change 1616
1717setup (
1818 author = "Michael Gendy" ,
19- author_email = "mngback @gmail.com" ,
19+ author_email = "nagymichel13 @gmail.com" ,
2020 python_requires = ">=3.8, <3.10" ,
2121 classifiers = [
2222 "Development Status :: 4 - Beta" ,
2323 "Intended Audience :: Developers" ,
2424 "License :: OSI Approved :: MIT License" ,
2525 "Natural Language :: English" ,
26- "Programming Language :: Python :: 3" ,
27- "Programming Language :: Python :: 3.6" ,
28- "Programming Language :: Python :: 3.7" ,
2926 "Programming Language :: Python :: 3.8" ,
27+ "Programming Language :: Python :: 3.9" ,
3028 ],
3129 description = "An alternative serializer implementation for REST framework written in cython built for speed." ,
3230 install_requires = requirements ,
3836 packages = find_packages (include = ["drf_turbo" , "drf_turbo.*" ]),
3937 test_suite = "tests" ,
4038 url = "https://github.com/Mng-dev-ai/drf-turbo" ,
41- version = "0.1.6 " ,
39+ version = "0.1.7 " ,
4240 zip_safe = False ,
4341 ext_modules = [
4442 Extension (
You can’t perform that action at this time.
0 commit comments