Skip to content

Commit 034507f

Browse files
authored
Fixing Pip install problem - Update MANIFEST to include model/ subdir, improving imports (#593)
1 parent 0e385b1 commit 034507f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
recursive-include changedetectionio/templates *
22
recursive-include changedetectionio/static *
3+
recursive-include changedetectionio/model *
34
include changedetection.py
45
global-exclude *.pyc
56
global-exclude node_modules

changedetectionio/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
from changedetectionio import html_tools
4242

43-
__version__ = '0.39.13'
43+
__version__ = '0.39.13.1'
4444

4545
datastore = None
4646

changedetectionio/store.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
import re
1414
import requests
1515

16-
from changedetectionio.model import Watch, App
17-
16+
from . model import App, Watch
1817

1918
# Is there an existing library to ensure some data store (JSON etc) is in sync with CRUD methods?
2019
# Open a github issue if you know something :)

0 commit comments

Comments
 (0)