Skip to content

Commit ec0e2d2

Browse files
authored
Merge pull request #47 from packethost/prep-release-3.8
Prep release 3.8
2 parents 264dd90 + 27ffe4d commit ec0e2d2

File tree

16 files changed

+29
-5
lines changed

16 files changed

+29
-5
lines changed

packet/Device.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# -*- coding: utf-8 -*-
2+
# SPDX-License-Identifier: LGPL-3.0-only
23

34
from .OperatingSystem import OperatingSystem
45

packet/Facility.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# -*- coding: utf-8 -*-
2+
# SPDX-License-Identifier: LGPL-3.0-only
23

34

45
class Facility:

packet/Manager.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# -*- coding: utf-8 -*-
2+
# SPDX-License-Identifier: LGPL-3.0-only
3+
24
from .baseapi import BaseAPI
35
from .baseapi import Error as PacketError
46
from .Plan import Plan

packet/OperatingSystem.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# -*- coding: utf-8 -*-
2+
# SPDX-License-Identifier: LGPL-3.0-only
23

34

45
class OperatingSystem(object):

packet/Plan.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# -*- coding: utf-8 -*-
2+
# SPDX-License-Identifier: LGPL-3.0-only
23

34

45
class Plan:

packet/Project.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# -*- coding: utf-8 -*-
2+
# SPDX-License-Identifier: LGPL-3.0-only
23

34

45
class Project:

packet/SSHKey.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# -*- coding: utf-8 -*-
2+
# SPDX-License-Identifier: LGPL-3.0-only
23

34

45
class SSHKey:

packet/Volume.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# -*- coding: utf-8 -*-
2+
# SPDX-License-Identifier: LGPL-3.0-only
23

34
from .Plan import Plan
45
from .Facility import Facility

packet/__init__.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
# -*- coding: utf-8 -*-
2+
# SPDX-License-Identifier: LGPL-3.0-only
3+
24
"""library to interact with the Packet API"""
35

4-
__version__ = "1.0"
5-
__author__ = "Aaron Welch ( https://www.packet.net/about/team/aaron-welch/ )"
6-
__author_email__ = "welch@packet.net"
6+
__version__ = "1.38.0"
7+
__author__ = "Packet Engineers"
8+
__author_email__ = "help@packet.net"
79
__license__ = "LGPL v3"
8-
__copyright__ = "Copyright (c) 2015, Aaron Welch and Packet"
10+
__copyright__ = "Copyright (c) 2019, Packet"
911

1012
from .Device import Device # noqa
1113
from .Facility import Facility # noqa

packet/baseapi.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# -*- coding: utf-8 -*-
2+
# SPDX-License-Identifier: LGPL-3.0-only
3+
24
import json
35
import logging
46
import requests

0 commit comments

Comments
 (0)