Skip to content
This repository has been archived by the owner on Jul 12, 2021. It is now read-only.

Commit

Permalink
freeze python irc module at 14.0 in setup.py and add notes about irc …
Browse files Browse the repository at this point in the history
…version in HOWTO
  • Loading branch information
Eagle[TM] committed May 8, 2016
1 parent 8bbce1b commit cc97c32
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions HOWTO.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ We will download the latest git snapshot for Electrum to configure and install i
$ cd ~
$ git clone https://github.com/spesmilo/electrum-server.git
$ cd electrum-server
$ sudo apt-get install python-setuptools
$ sudo configure
$ sudo python setup.py install

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

For the python irc module please note electrum-server currently only supports versions between 11 and 14.0.
The setup.py takes care of installing a supported version but be aware of it when installing or upgrading
manually.

Regarding leveldb, see the steps in README.leveldb for further details, especially if your system
doesn't have the python-leveldb package or if plyvel installation fails.

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
name="electrum-server",
version="1.0",
scripts=['run_electrum_server.py','electrum-server'],
install_requires=['plyvel','jsonrpclib', 'irc>=11'],
install_requires=['plyvel','jsonrpclib', 'irc >= 11, <=14.0'],
package_dir={
'electrumserver':'src'
},
Expand Down

0 comments on commit cc97c32

Please sign in to comment.