Custom Query (1174 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (376 - 378 of 1174)

Ticket Resolution Summary Owner Reporter
#4 FIXED Finish BasicFileStore storage. Christopher Allan Webber Christopher Allan Webber
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 Mike Linksvayer
Description

There seems to be a missing step:

Do this to upgrade

  1. Make sure to run ./bin/python setup.py develop --upgrade && ./bin/gmg dbupdate after upgrading.

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 randfur
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 sudo apt-get install git-core python python-dev python-lxml python-imaging python-virtualenv python-gst-1.0 libjpeg8-dev autoconf

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.