-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove drf_yasg, Remove Nested Serializers, add max_version to __init__
- Loading branch information
1 parent
a79a5ca
commit 9f35f95
Showing
7 changed files
with
23 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,9 +8,10 @@ class NbserviceConfig(PluginConfig): | |
verbose_name = 'Service Management' | ||
description = 'ITSM Service Management' | ||
version = __version__ | ||
author = 'Renato Almeida de Oliveira' | ||
author = 'Renato Almeida de Oliveira Zaroubin' | ||
author_email = '[email protected]' | ||
min_version = "4.0.0" | ||
max_version = "4.0.99" | ||
required_settings = [] | ||
default_settings = {} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "3.0.0" | ||
__version__ = "3.0.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,11 +30,9 @@ def get_version(rel_path): | |
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url='https://github.com/renatoalmeidaoliveira/nbservice', | ||
author='Renato Almeida de Oliveira', | ||
author='Renato Almeida de Oliveira Zaroubin', | ||
author_email='[email protected]', | ||
install_requires=[ | ||
'drf_yasg', | ||
], | ||
install_requires=[], | ||
packages=find_packages(), | ||
include_package_data=True, | ||
package_data={ | ||
|