Skip to content

Commit

Permalink
Merge 09b16ba into fa0f3a1
Browse files Browse the repository at this point in the history
  • Loading branch information
nickw444 committed Nov 15, 2018
2 parents fa0f3a1 + 09b16ba commit 07e3050
Show file tree
Hide file tree
Showing 22 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ install:
- pip install .

script:
- flake8 py_ness_232 py_ness_232_tests
- mypy --strict py_ness_232
- coverage run --source=py_ness_232 setup.py test
- flake8 nessclient nessclient_tests
- mypy --strict nessclient
- coverage run --source=nessclient setup.py test

after_success: coveralls

Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ verify_ssl = true
name = "pypi"

[packages]
"py-ness-232" = {editable = true, extras = ["cli"], path = "."}
"nessclient" = {editable = true, extras = ["cli"], path = "."}

[dev-packages]
"flake8" = "*"
Expand Down
4 changes: 2 additions & 2 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import unittest

from py_ness_232.event import (
from nessclient.event import (
ZoneUpdate, pack_unsigned_short_data_enum, ArmingUpdate,
BaseEvent, StatusUpdate, ViewStateUpdate)
from py_ness_232.packet import Packet
from nessclient.packet import Packet


class UtilsTestCase(unittest.TestCase):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import unittest
from os import path

from py_ness_232.packet import Packet, CommandType
from nessclient.packet import Packet, CommandType

_LOGGER = logging.getLogger(__name__)

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ def get_version():
version = '0.0.0-dev'

setup(
name='py-ness-232',
name='nessclient',
version=version,
packages=['py_ness_232'],
packages=['nessclient'],
author="Nick Whyte",
author_email='nick@nickwhyte.com',
description="Implementation/abstraction of the Ness D8x / D16x Serial Interface ASCII protocol",
Expand All @@ -39,7 +39,7 @@ def get_version():
'Intended Audience :: Developers',
'Programming Language :: Python',
],
test_suite="py_ness_232_tests",
test_suite="nessclient_tests",
install_requires=[
'justbackoff',
'dataclasses;python_version<"3.7"'
Expand Down

0 comments on commit 07e3050

Please sign in to comment.