Custom Query (1174 matches)
Results (376 - 378 of 1174)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #4 | FIXED | Finish BasicFileStore storage. | ||
| Description |
Finish the BasicFileStore storage system, with full tests of course, to match the full interface description in storage.py. At the time of writing most of this is done, but I need to finish it. |
|||
| #767 | fixed | First point under "do this to upgrade" in release notes is something to do after upgrading | ||
| Description |
There seems to be a missing step:
You have to search back to 0.3.2 to find actual (but poorly formatted) instructions. This is a pain for someone upgrading for the first time, especially not knowing what they're doing. I forget everything between releases, so it is the first time everytime. |
|||
| #5470 | cant-reproduce | Fix "setup.py develop --upgrade" on Ubuntu 14.04 | ||
| Description |
This is a patch that makes "setup.py develop --upgrade" work on my Ubuntu 14.04 laptop. Without it I get several depenency misses. diff --git a/setup.py b/setup.py
index 608a01d..3c81e66 100644
--- a/setup.py
+++ b/setup.py
@@ -48,6 +48,9 @@ if PY2:
pyversion_install_requires.append('ExifRead')
install_requires = [
+ 'docutils',
+ 'imagesize',
+ 'markupsafe',
'waitress',
'alembic>=0.7.5',
'python-dateutil',
@@ -67,7 +70,7 @@ install_requires = [
'itsdangerous',
'pytz',
'sphinx',
- 'six',
+ 'six>=1.7.0',
'oauthlib',
'unidecode',
'jsonschema',
Note that this is after running
|
|||
