Skip to content

Commit

Permalink
Released v1.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dennissiemensma committed Sep 29, 2018
1 parent 9a98c73 commit 07a8d78
Show file tree
Hide file tree
Showing 96 changed files with 2,099 additions and 1,252 deletions.
2 changes: 0 additions & 2 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
*Let op: Het DSMR-reader project is gefocused op het uitlezen van de slimme meter en om die data met jou op zoveel mogelijk manieren te delen. Het inlezen van andere (externe) data in DSMR-reader valt buiten de scope van dit project.*

### Jouw omgeving
*(Indien van toepassing)*
* DSMR-reader versie *(rechtsbovenin applicatie zichtbaar)*: `v1.X.Y`
Expand Down
16 changes: 8 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,21 @@ language: python
python:
- 3.4
- 3.5
- 3.5-dev
- 3.6
- 3.5-dev
- 3.6-dev
- 3.7-dev

matrix:
allow_failures:
# Look ahead.
- python: 3.5-dev
- python: 3.6-dev
- python: 3.7-dev
- python: nightly

services:
- postgresql
- mysql

addons:
# https://docs.travis-ci.com/user/database-setup/#PostgreSQL
postgresql: "9.4"
Expand Down Expand Up @@ -50,7 +48,9 @@ before_script:
- sh -c "if [ '$DB' = 'mysql' ]; then mysql -e \"GRANT ALL PRIVILEGES ON test_dsmrreader.* TO 'travis'@'%';\" -u root; fi"

script:
- py.test --pylama --cov --cov-report=term

- py.test --cov --cov-report=term
# Only perform code audit when the package was installed.
- sh -c "if [ `command -v pylama` ] ; then pylama; else echo 'SKIPPED pylama code audit' ; fi"

after_success:
- codecov
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
[![Coverage](https://codecov.io/github/dennissiemensma/dsmr-reader/coverage.svg?branch=master)](https://codecov.io/gh/dennissiemensma/dsmr-reader/branch/master)
[![Documentation Status](https://readthedocs.org/projects/dsmr-reader/badge/?version=latest)](https://dsmr-reader.readthedocs.io/en/latest/?badge=latest)
[![Requirements Status](https://requires.io/github/dennissiemensma/dsmr-reader/requirements.svg?branch=master)](https://requires.io/github/dennissiemensma/dsmr-reader/requirements/?branch=master)
[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://dsmr-reader.readthedocs.io/en/latest/donations.html)
[![Donate](https://img.shields.io/badge/Donate-PayPal-brightgreen.svg)](https://dsmr-reader.readthedocs.io/en/latest/donations.html)
[![Python 3.5 & 3.6](https://img.shields.io/badge/python%203.5%20%26%203.6-supported-brightgreen.svg)](https://dsmr-reader.readthedocs.io/en/latest/requirements.html#python)
[![Python 3.4](https://img.shields.io/badge/python%203.4-support%20ended-red.svg)](https://dsmr-reader.readthedocs.io/en/latest/requirements.html#python)


# DSMR Reader Datalogger/GUI
Expand All @@ -17,6 +19,7 @@
- **Always free to use** (for non-commercial use only).
- **Keeping your data for yourself** (none of the data is stored outside your database, unless you explicitly upload it to a third party).


## Features
- Application languages supported: **Dutch (Nederlands)** and **English**. The language used in your browser dynamicly decides the language applied in the application.
- Optional Support for **exporting data to third-parties**: MinderGas.nl, PVOutput.org.
Expand Down
2 changes: 1 addition & 1 deletion docs/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ Client file in ``/home/dsmr/dsmr_datalogger_api_client.py``::
except SerialException as error:
# Something else and unexpected failed.
print('Serial connection failed:', error)
raise StopIteration() # Break out of yield.
return # Break out of yield.

try:
# Make sure weird characters are converted properly.
Expand Down
Loading

0 comments on commit 07a8d78

Please sign in to comment.