Skip to content

Commit

Permalink
1.0.2 (#306)
Browse files Browse the repository at this point in the history
- Fixed setup issues
- Fixed unnecessary long tracebacks
  • Loading branch information
spacemanspiff2007 authored Jul 29, 2022
1 parent 9a621f2 commit 062e87f
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
6 changes: 5 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,12 @@ MyOpenhabRule()
```

# Changelog
#### 1.0.2 (29.07.2022)
- Fixed setup issues
- Fixed unnecessary long tracebacks

#### 1.0.1 (25.07.2022)
- Dockerfile is Python 3.10 and non slim
- Dockerfile is Python 3.10 and non slim

#### 1.0.0 (25.07.2022)
- OpenHAB >= 3.3 and Python >= 3.8 only!
Expand Down
2 changes: 1 addition & 1 deletion requirements_setup.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ujson >= 5.4, < 5.5
paho-mqtt >= 1.6, < 1.7

immutables == 0.18
eascheduler == 0.1.5
eascheduler == 0.1.6
easyconfig == 0.2.4
stack_data == 0.3.0

Expand Down
2 changes: 1 addition & 1 deletion src/HABApp/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.0.1'
__version__ = '1.0.2'
2 changes: 1 addition & 1 deletion src/HABApp/core/lib/exceptions/format_frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

SUPPRESSED_PATHS = (
# Libraries of base installation
re.compile(r'[/\\](?:python\d\.\d+|python\d{2,3})[/\\](?:lib[/\\]|\w+\.py.*$)', re.IGNORECASE),
re.compile(r'[/\\](?:python\d\.\d+|python\d{2,3})[/\\](?:lib[/\\]|site-packages[/\\]|\w+\.py.*$)', re.IGNORECASE),
# Libraries in venv
re.compile(r'[/\\]lib[/\\]site-packages[/\\]', re.IGNORECASE),
)
Expand Down
1 change: 1 addition & 0 deletions tests/test_core/test_lib/test_format_traceback.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,4 +167,5 @@ def test_regex(pytestconfig):

assert skip_file(r'\Python310\lib\runpy.py')
assert skip_file(r'/usr/lib/python3.10/runpy.py')
assert skip_file(r'/opt/habapp/lib/python3.8/site-packages/aiohttp/client.py')
assert skip_file(r'\Python310\lib\asyncio\tasks.py')
4 changes: 0 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,3 @@ asyncio_mode = auto
norecursedirs = run docs
markers =
no_internals: Does not set up the item registry and event bus

log_file_level = 0
log_file_format = [%(asctime)s] [%(name)25s] %(levelname)8s | %(message)s
log_file= ./run/conf_testing/log/pytest.log

0 comments on commit 062e87f

Please sign in to comment.