Skip to content

Commit

Permalink
fix: change python version
Browse files Browse the repository at this point in the history
  • Loading branch information
escalate committed May 24, 2023
1 parent c2cedb3 commit ebadf5a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
- name: Check out repository
uses: actions/checkout@v2

- name: Set up Python 3.6
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: '3.6'
python-version: '3.7'

- name: Install test dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.6-alpine
FROM python:3.7-alpine

LABEL maintainer="Felix Boerner <ich@felix-boerner.de>"

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ Loxone offers many more control types and if you are missing one please create a
| WindowMonitor | - | - | - |

## Installation
Tested with Python 3.6.x on Ubuntu 18.04
Tested with Python 3.7 on Ubuntu 18.04

If you encounter issues with 3.6.x patch versions of Python, please open a Github issue.
If you encounter issues with 3.7.x patch versions of Python, please open a Github issue.

### Requirements
Install needed requirements via pip
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py36,flake8
envlist = py37,flake8
skipsdist = True

[testenv]
Expand Down

0 comments on commit ebadf5a

Please sign in to comment.