Skip to content

Commit a2e5d79

Browse files
authored
v0.0.7
1 parent ad7348d commit a2e5d79

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

gmail/gmail.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,4 @@ def send_mail(self, subject, message):
7070
mail = gmail()
7171
mail.login(gmail_id, gmail_password)
7272
mail.receiver_mail(destination_addresses)
73-
mail.send_mail(subject, message)
73+
mail.send_mail(subject, message)

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def readme():
1010

1111
setup(
1212
name = 'python-gmail',
13-
version = '0.0.6',
13+
version = '0.0.7',
1414
description = 'Automatically Send Gmail with SMTP Server.',
1515
long_description = readme(),
1616
long_description_content_type = 'text/markdown',
@@ -25,8 +25,9 @@ def readme():
2525
'Programming Language :: Python :: 3.6',
2626
'Programming Language :: Python :: 3.7',
2727
'Programming Language :: Python :: 3.8',
28+
'Programming Language :: Python :: 3.9',
2829
],
2930

3031
packages = ['gmail'],
3132
include_package_data = True,
32-
)
33+
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[tox]
2-
envlist = py27, py35, py36, py37, py38, pypy3
2+
envlist = py27, py35, py36, py37, py38, py39, pypy3

0 commit comments

Comments
 (0)