-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
38 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
v0.2.5 (2014-04-05) | ||
- Add troubleshooting page to docs | ||
v0.2.4 (2014-04-05) | ||
- Add logo | ||
v0.2.3 (2014-04-01) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ __author__ = "Konrad Foerstner <[email protected]>" | |
__copyright__ = "2011-2014 by Konrad Foerstner <[email protected]>" | ||
__license__ = "ISC license" | ||
__email__ = "[email protected]" | ||
__version__ = "0.2.4" | ||
__version__ = "0.2.5" | ||
|
||
def main(): | ||
parser = argparse.ArgumentParser() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ Table of content | |
installation | ||
subcommands | ||
example_analysis | ||
troubleshooting | ||
license | ||
versions | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Troubleshooting | ||
=============== | ||
|
||
Pickling Error | ||
-------------- | ||
|
||
Problem | ||
~~~~~~~ | ||
|
||
When running reademption (e.g. with Python 3.2) you get an error like this: | ||
:: | ||
Traceback (most recent call last): | ||
File "/usr/lib/python3.2/multiprocessing/queues.py", line 272, in _feed | ||
send(obj) | ||
_pickle.PicklingError: Can't pickle <class 'method'>: attribute lookup builtins.method failed | ||
|
||
Solution | ||
~~~~~~~~ | ||
|
||
Switch to Python 3.3 or higher. The newer versions can handle this. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
setup( | ||
name='READemption', | ||
version='0.2.4', | ||
version='0.2.5', | ||
packages=['reademptionlib', 'tests'], | ||
author='Konrad U. Förstner', | ||
author_email='[email protected]', | ||
|