Skip to content

Commit

Permalink
Switched to version 2 to match new package name
Browse files Browse the repository at this point in the history
  • Loading branch information
andylockran committed Jan 28, 2024
1 parent a530780 commit e2180b2
Show file tree
Hide file tree
Showing 11 changed files with 29 additions and 29 deletions.
8 changes: 4 additions & 4 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# file GENERATED by distutils, do NOT edit
setup.cfg
setup.py
heatmiserV3/__init__.py
heatmiserV3/connection.py
heatmiserV3/constants.py
heatmiserV3/heatmiser.py
heatmiserv3/__init__.py
heatmiserv3/connection.py
heatmiserv3/constants.py
heatmiserv3/heatmiser.py
config/config.yml
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#HeatmiserV3
[![Build Status](https://github.com/andylockran/heatmiserV3/actions/workflows/python-package.yml/badge.svg)](https://github.com/andylockran/heatmiserV3/actions/workflows/python-package.yml)
#heatmiserv3
[![Build Status](https://github.com/andylockran/heatmiserv3/actions/workflows/python-package.yml/badge.svg)](https://github.com/andylockran/heatmiserv3/actions/workflows/python-package.yml)

This library has been created from the work carried out by
Neil Trimboy in 2011 here:
Expand Down
2 changes: 1 addition & 1 deletion examples/get_temperature.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from heatmiserV3 import heatmiser, connection
from heatmiserv3 import heatmiser, connection
import logging

"""
Expand Down
2 changes: 1 addition & 1 deletion examples/set_temperature_tp_20.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from heatmiserV3 import heatmiser, connection
from heatmiserv3 import heatmiser, connection
import logging

"""
Expand Down
6 changes: 3 additions & 3 deletions heatmiserV3.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Metadata-Version: 2.1
Name: heatmiserV3
Name: heatmiserv3
Version: 1.2.2
Summary: A library to interact with Heatmiser Themostats using V3
Home-page: https://github.com/andylockran/heatmiserV3
Download-URL: https://github.com/andylockran/heatmiserV3/tarball/1.2.2
Home-page: https://github.com/andylockran/heatmiserv3
Download-URL: https://github.com/andylockran/heatmiserv3/tarball/1.2.2
Author: Andy Loughran
Author-email: andy@zrmt.com
Keywords: v3,thermostat,heatmiser,prt,serial,uh1
Expand Down
20 changes: 10 additions & 10 deletions heatmiserV3.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ LICENSE.TXT
README.md
setup.cfg
setup.py
heatmiserV3/__init__.py
heatmiserV3/config.yml
heatmiserV3/connection.py
heatmiserV3/constants.py
heatmiserV3/heatmiser.py
heatmiserV3.egg-info/PKG-INFO
heatmiserV3.egg-info/SOURCES.txt
heatmiserV3.egg-info/dependency_links.txt
heatmiserV3.egg-info/requires.txt
heatmiserV3.egg-info/top_level.txt
heatmiserv3/__init__.py
heatmiserv3/config.yml
heatmiserv3/connection.py
heatmiserv3/constants.py
heatmiserv3/heatmiser.py
heatmiserv3.egg-info/PKG-INFO
heatmiserv3.egg-info/SOURCES.txt
heatmiserv3.egg-info/dependency_links.txt
heatmiserv3.egg-info/requires.txt
heatmiserv3.egg-info/top_level.txt
tests/test_heatmiser.py
2 changes: 1 addition & 1 deletion heatmiserV3.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
heatmiserV3
heatmiserv3
2 changes: 1 addition & 1 deletion heatmiserv3/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import serial
import logging
from . import constants
from heatmiserV3 import heatmiser
from heatmiserv3 import heatmiser

logging.basicConfig(level=logging.INFO)

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "heatmiserv3"
version = "1.2.8"
version = "2.0.0"
description = "A library to interact with Heatmiser Themostats using V3 protocol."
authors = ["Andy Loughran <andy@lockran.com>"]
license = "Apache 2"
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
from setuptools import setup

setup(
name="heatmiserV3",
packages=["heatmiserV3"], # this must be the same as the name above
name="heatmiserv3",
packages=["heatmiserv3"], # this must be the same as the name above
description="A library to interact with Heatmiser Themostats using V3",
author="Andy Loughran",
author_email="andy@zrmt.com",
tests_require=["pytest", "pylint", "flake8"],
data_files=[("config", ["heatmiserV3/config.yml"])],
data_files=[("config", ["heatmiserv3/config.yml"])],
include_package_data=True,
url="https://github.com/andylockran/heatmiserV3",
url="https://github.com/andylockran/heatmiserv3",
keywords=["v3", "thermostat", "heatmiser", "prt", "serial", "uh1"],
test_suite="tests.test_heatmiser",
classifiers=[],
Expand Down
2 changes: 1 addition & 1 deletion tests/test_heatmiser.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Tests for HeatmiserThermostat and CRC Methods"""
import unittest
from heatmiserV3 import heatmiser
from heatmiserv3 import heatmiser


class TestCRCMethods(unittest.TestCase):
Expand Down

0 comments on commit e2180b2

Please sign in to comment.