Skip to content

Commit

Permalink
Merge pull request #21 from Mng-dev-ai/v0.1.7
Browse files Browse the repository at this point in the history
v0.1.7
  • Loading branch information
Mng-dev-ai authored Aug 19, 2023
2 parents 376e516 + 42240ab commit 5db7b4b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
7 changes: 6 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,9 @@ History
------------------
* clean project
* drop support for renderers,parsers, and responses
* remove deprecated methods
* remove deprecated methods

0.1.7 (2023-08-19)
------------------
* pin requirements
* use c extensions
2 changes: 0 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ Overview
drf-turbo is a drop-in serializer for Django REST Framework (DRF). drf-turbo serializers run around 7.75 times faster
than what what you get from DRF's packaged serializer.

**NOTE**: It is written in Cython, which is required to build this package.


Requirements
------------
Expand Down
4 changes: 2 additions & 2 deletions drf_turbo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
from drf_turbo.serializer import BaseSerializer, ModelSerializer, Serializer

__author__ = """Michael Gendy"""
__email__ = "mngback@gmail.com"
__version__ = "0.1.6"
__email__ = "nagymichel13@gmail.com"
__version__ = "0.1.7"

__all__ = [
"BaseSerializer",
Expand Down
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,15 @@

setup(
author="Michael Gendy",
author_email="mngback@gmail.com",
author_email="nagymichel13@gmail.com",
python_requires=">=3.8, <3.10",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
description="An alternative serializer implementation for REST framework written in cython built for speed.",
install_requires=requirements,
Expand All @@ -38,7 +36,7 @@
packages=find_packages(include=["drf_turbo", "drf_turbo.*"]),
test_suite="tests",
url="https://github.com/Mng-dev-ai/drf-turbo",
version="0.1.6",
version="0.1.7",
zip_safe=False,
ext_modules=[
Extension(
Expand Down

0 comments on commit 5db7b4b

Please sign in to comment.