Skip to content

Commit

Permalink
Pin to hcsr04sensor library >=1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
alaudet committed Jul 4, 2023
1 parent 3d59309 commit c1d8895
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Version 1.8.2rc1
Version 1.8.2rc2
9 changes: 9 additions & 0 deletions raspisump/config_values.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
"""Retrieve configuration from raspisump.conf"""

# Raspi-sump, a sump pump monitoring system.
# Al Audet
# https://www.linuxnorth.org/raspi-sump/
#
# All configuration changes should be done in raspisump.conf
# MIT License -- https://www.linuxnorth.org/raspi-sump/license.html

import os
import configparser

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup
import os

version = "1.8.2rc1"
version = "1.8.2rc2"
user = os.getlogin()

homedir = "/home/" + user + "/raspi-sump/"
Expand Down Expand Up @@ -61,7 +61,7 @@
packages=["raspisump"],
scripts=raspi_sump_files,
data_files=add_files,
install_requires=["hcsr04sensor"],
install_requires=["hcsr04sensor>=1.7"],
)

if os.path.isdir(homedir):
Expand Down

0 comments on commit c1d8895

Please sign in to comment.