Skip to content

Commit

Permalink
Reviewed requirements.
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrien Delle Cave committed Jan 10, 2020
1 parent 0e65d44 commit ada4d1f
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
python-dwho (0.3.23) unstable; urgency=medium

* Reviewed requirements.

-- Adrien DELLE CAVE (Decryptus) <adc@doowan.net> Fri, 10 Jan 2020 22:37:34 +0100

python-dwho (0.3.22) unstable; urgency=medium

* Reviewed requirements.
Expand Down
2 changes: 1 addition & 1 deletion RELEASE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.22
0.3.23
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.22
0.3.23
20 changes: 20 additions & 0 deletions dwho/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,32 @@
DWHO_SHARED = keystore.Keystore()
DWHO_THREADS = []
_INOTIFY = None
_SOFTNAME = ""
_SOFTVER = ""


def stop(signum, stack_frame): # pylint: disable=unused-argument
for t in DWHO_THREADS:
t()

def set_softname(name):
global _SOFTNAME

if not _SOFTNAME and helpers.has_len(name):
_SOFTNAME = name

def get_softname():
return _SOFTNAME

def set_softver(version):
global _SOFTVER

if not _SOFTVER and has_len.has_len(version):
_SOFTVER = version

def get_softver():
return _SOFTVER

def get_server_id(conf = None):
server_id = getfqdn()

Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
escapejson
httpdis>=0.6.8
httpdis>=0.6.9
Mako
PyYAML>=3.10
pyinotify
python-dotenv
redis>=2.4.0
requests>=2.0
six>=1.13.0
sonicprobe>=0.3.20
sonicprobe>=0.3.22
4 changes: 2 additions & 2 deletions setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ description: dwho
author: Adrien Delle Cave
author_email: pypi@doowan.net
copyright: '2020 Adrien Delle Cave'
release: '0.3.22'
version: '0.3.22'
release: '0.3.23'
version: '0.3.23'
license: License GPL-3
url: https://github.com/decryptus/dwho
python_requires:
Expand Down

0 comments on commit ada4d1f

Please sign in to comment.