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 Nov 23, 2019
1 parent 81c5e28 commit ee44396
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 7 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.8) unstable; urgency=medium

* Reviewed requirements.

-- Adrien DELLE CAVE (Decryptus) <adc@doowan.net> Sat, 23 Nov 2019 22:46:29 +0100

python-dwho (0.3.7) 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.7
0.3.8
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.7
0.3.8
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ Homepage: https://github.com/decryptus/dwho
Package: python-dwho
Architecture: all
Homepage: https://github.com/decryptus/dwho
Depends: ${misc:Depends}, lsb-release, python-dev (>= 2.7~), python-mako, python-pip, python-pyinotify, python-redis, python-requests, python-sonicprobe (>= 0.3.6), python-yaml
Depends: ${misc:Depends}, lsb-release, python-dev (>= 2.7~), python-mako, python-pip, python-pyinotify, python-redis, python-requests, python-sonicprobe (>= 0.3.8), python-yaml
Suggests: python-mysqldb, python-psycopg2, python-sqlite
Description: DWho python libraries
5 changes: 5 additions & 0 deletions dwho/classes/modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
import abc
import logging
import re

from socket import getfqdn

import six

from httpdis import httpdis
Expand Down Expand Up @@ -41,6 +44,7 @@ def __init__(self):
self.initialized = False
self.modconf = None
self.options = None
self.server_id = getfqdn()

def _anonymous(self, request): # pylint: disable=unused-argument,no-self-use
return
Expand Down Expand Up @@ -74,6 +78,7 @@ def init(self, config):

self.initialized = True
self.config = config
self.server_id = config['general']['server_id']

ref_general = config['general']
routes_list = []
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
escapejson
httpdis>=0.6.4
httpdis>=0.6.5
Mako
PyYAML>=3.10
pyinotify
redis>=2.4.0
requests>=2.0
six>=1.12.0
sonicprobe>=0.3.6
sonicprobe>=0.3.8
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: '2019 Adrien Delle Cave'
release: '0.3.7'
version: '0.3.7'
release: '0.3.8'
version: '0.3.8'
license: License GPL-3
url: https://github.com/decryptus/dwho
python_requires:
Expand Down

0 comments on commit ee44396

Please sign in to comment.