]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Fixes the sqlalchemy requirements.txt that restricted to SQLAlchemy <= 0.7.99.
authorThomas Goirand <thomas@goirand.fr>
Mon, 2 Dec 2013 14:59:41 +0000 (22:59 +0800)
committerThomas Goirand <thomas@goirand.fr>
Mon, 2 Dec 2013 14:59:41 +0000 (22:59 +0800)
Change-Id: Ic45f467fd3003a8f2b699eb215b3b2f259bec01e

debian/changelog
debian/patches/fixes-SQLAlchemy-requirement.patch [new file with mode: 0644]
debian/patches/series

index e151f6c24a5d77a1b2b3bdc6e92ad82b880d7b59..981f4f479b19cb4f2e5ec415860b75892720989a 100644 (file)
@@ -3,6 +3,8 @@ neutron (2013.2-7) UNRELEASED; urgency=low
   * neutron-l3-agent & neutron-vpn-agent now conflicts with each other.
   * Fixed the cron.d files for lbass, dhcp and l3, so that they are on a single
     line instead of broken lines with \ (this doesn't work otherwise).
+  * Fixes the sqlalchemy requirements.txt that restricted to SQLAlchemy
+    <= 0.7.99.
 
  -- Thomas Goirand <zigo@debian.org>  Mon, 02 Dec 2013 22:39:46 +0800
 
diff --git a/debian/patches/fixes-SQLAlchemy-requirement.patch b/debian/patches/fixes-SQLAlchemy-requirement.patch
new file mode 100644 (file)
index 0000000..e4f4e3c
--- /dev/null
@@ -0,0 +1,18 @@
+Description: Fixes the sqlalchemy requirement
+ Upstream wrongly restricts SQLAlchemy dependency, while 0.8 is perfectly
+ fine with Neutron.
+Author: Thomas Goirand <zigo@debian.org>
+Forwarded: no
+Last-Update: 2013-12-02
+
+--- neutron-2013.2.orig/requirements.txt
++++ neutron-2013.2/requirements.txt
+@@ -17,7 +17,7 @@ Jinja2
+ kombu>=2.4.8
+ netaddr
+ python-neutronclient>=2.3.0,<3
+-SQLAlchemy>=0.7.8,<=0.7.99
++SQLAlchemy>=0.7.8
+ WebOb>=1.2.3,<1.3
+ python-keystoneclient>=0.3.2
+ alembic>=0.4.1
index 25b97dfe6b92bb75be0fba09dee0df6356263425..218bbf4f9941012313f8973001ade7bb9abce4e5 100644 (file)
@@ -1,2 +1,3 @@
 fix-alembic-migration-with-sqlite3.patch
 better-config-default.patch
+fixes-SQLAlchemy-requirement.patch