We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4a66e0 commit 427a807Copy full SHA for 427a807
mailjet_rest/utils/version.py
@@ -1,4 +1,4 @@
1
-VERSION = (1, 3, 0)
+VERSION = (1, 3, 3)
2
3
4
def get_version(version=None):
@@ -10,4 +10,4 @@ def get_version(version=None):
10
version = VERSION
11
else:
12
assert len(version) == 3
13
- return '{0}.{1}.{2}'.format(*(x for x in version))
+ return 'v{0}.{1}.{2}'.format(*(x for x in version))
setup.py
@@ -24,6 +24,7 @@
24
url='https://github.com/mailjet/mailjet-apiv3-python',
25
description=('Mailjet V3 API wrapper'),
26
long_description=long_description,
27
+ long_description_content_type="text/markdown",
28
classifiers=['Development Status :: 4 - Beta',
29
'Environment :: Console',
30
'Intended Audience :: Developers',
0 commit comments