Skip to content

Commit cc97c32

Browse files
author
Eagle[TM]
committed
freeze python irc module at 14.0 in setup.py and add notes about irc version in HOWTO
1 parent 8bbce1b commit cc97c32

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

HOWTO.md

+5
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ We will download the latest git snapshot for Electrum to configure and install i
151151
$ cd ~
152152
$ git clone https://github.com/spesmilo/electrum-server.git
153153
$ cd electrum-server
154+
$ sudo apt-get install python-setuptools
154155
$ sudo configure
155156
$ sudo python setup.py install
156157

@@ -165,6 +166,10 @@ package manager if you don't want to use the install routine.
165166
$ sudo apt-get install python-setuptools python-openssl python-leveldb libleveldb-dev
166167
$ sudo easy_install jsonrpclib irc plyvel
167168

169+
For the python irc module please note electrum-server currently only supports versions between 11 and 14.0.
170+
The setup.py takes care of installing a supported version but be aware of it when installing or upgrading
171+
manually.
172+
168173
Regarding leveldb, see the steps in README.leveldb for further details, especially if your system
169174
doesn't have the python-leveldb package or if plyvel installation fails.
170175

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
name="electrum-server",
55
version="1.0",
66
scripts=['run_electrum_server.py','electrum-server'],
7-
install_requires=['plyvel','jsonrpclib', 'irc>=11'],
7+
install_requires=['plyvel','jsonrpclib', 'irc >= 11, <=14.0'],
88
package_dir={
99
'electrumserver':'src'
1010
},

0 commit comments

Comments
 (0)