Skip to content

Commit

Permalink
Merge pull request #47 from packethost/prep-release-3.8
Browse files Browse the repository at this point in the history
Prep release 3.8
  • Loading branch information
mmlb committed May 30, 2019
2 parents 264dd90 + 27ffe4d commit ec0e2d2
Show file tree
Hide file tree
Showing 16 changed files with 29 additions and 5 deletions.
1 change: 1 addition & 0 deletions packet/Device.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# -*- coding: utf-8 -*-
# SPDX-License-Identifier: LGPL-3.0-only

from .OperatingSystem import OperatingSystem

Expand Down
1 change: 1 addition & 0 deletions packet/Facility.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# -*- coding: utf-8 -*-
# SPDX-License-Identifier: LGPL-3.0-only


class Facility:
Expand Down
2 changes: 2 additions & 0 deletions packet/Manager.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# -*- coding: utf-8 -*-
# SPDX-License-Identifier: LGPL-3.0-only

from .baseapi import BaseAPI
from .baseapi import Error as PacketError
from .Plan import Plan
Expand Down
1 change: 1 addition & 0 deletions packet/OperatingSystem.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# -*- coding: utf-8 -*-
# SPDX-License-Identifier: LGPL-3.0-only


class OperatingSystem(object):
Expand Down
1 change: 1 addition & 0 deletions packet/Plan.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# -*- coding: utf-8 -*-
# SPDX-License-Identifier: LGPL-3.0-only


class Plan:
Expand Down
1 change: 1 addition & 0 deletions packet/Project.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# -*- coding: utf-8 -*-
# SPDX-License-Identifier: LGPL-3.0-only


class Project:
Expand Down
1 change: 1 addition & 0 deletions packet/SSHKey.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# -*- coding: utf-8 -*-
# SPDX-License-Identifier: LGPL-3.0-only


class SSHKey:
Expand Down
1 change: 1 addition & 0 deletions packet/Volume.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# -*- coding: utf-8 -*-
# SPDX-License-Identifier: LGPL-3.0-only

from .Plan import Plan
from .Facility import Facility
Expand Down
10 changes: 6 additions & 4 deletions packet/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
# -*- coding: utf-8 -*-
# SPDX-License-Identifier: LGPL-3.0-only

"""library to interact with the Packet API"""

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

from .Device import Device # noqa
from .Facility import Facility # noqa
Expand Down
2 changes: 2 additions & 0 deletions packet/baseapi.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# -*- coding: utf-8 -*-
# SPDX-License-Identifier: LGPL-3.0-only

import json
import logging
import requests
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: LGPL-3.0-only

[aliases]
test=pytest

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env python
# SPDX-License-Identifier: LGPL-3.0-only

# Notes for the not-an-everyday-python-dev for package distribution on pypi
#
Expand Down Expand Up @@ -47,7 +48,7 @@

setup(
name="packet-python",
version="1.37.1",
version="1.38.0",
description="Packet API client",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 2 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: LGPL-3.0-only

let
_pkgs = import <nixpkgs> {};
in
Expand Down
2 changes: 2 additions & 0 deletions test/.coveragerc
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: LGPL-3.0-only

[report]
omit =
*/.local/*
Expand Down
2 changes: 2 additions & 0 deletions test/test_packet.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: LGPL-3.0-only

import sys
import json
import unittest
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: LGPL-3.0-only

[tox]
envlist = py27,py34,py35,py36,py37
skip_missing_interpreters=True
Expand Down

0 comments on commit ec0e2d2

Please sign in to comment.