-
Notifications
You must be signed in to change notification settings - Fork 300
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Lorenzo Setale <[email protected]>
- Loading branch information
1 parent
5b689ca
commit ca03939
Showing
3 changed files
with
6 additions
and
6 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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# -*- coding: utf-8 -*- | ||
"""digitalocean API to manage droplets""" | ||
|
||
__version__ = "1.14.0" | ||
__version__ = "1.15.0" | ||
__author__ = "Lorenzo Setale ( http://who.is.lorenzo.setale.me/? )" | ||
__author_email__ = "[email protected]" | ||
__license__ = "LGPL v3" | ||
__copyright__ = "Copyright (c) 2012, 2013, 2014, 2015, 2016, 2017, 2018 Lorenzo Setale" | ||
__copyright__ = "Copyright (c) 2012-2020 Lorenzo Setale" | ||
|
||
from .Manager import Manager | ||
from .Droplet import Droplet, DropletError, BadKernelObject, BadSSHKeyFormat | ||
|
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 |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
|
||
setup( | ||
name='python-digitalocean', | ||
version='1.14.0', | ||
version='1.15.0', | ||
description='digitalocean.com API to manage Droplets and Images', | ||
author='Lorenzo Setale ( http://who.is.lorenzo.setale.me/? )', | ||
author_email='[email protected]', | ||
|