[tryton-debian-vcs] tryton-modules-stock branch debian-stretch-3.8 updated. debian/3.8.5-1-2-g67c084a
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Sun Nov 12 16:35:52 UTC 2017
The following commit has been merged in the debian-stretch-3.8 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-stock.git;a=commitdiff;h=debian/3.8.5-1-2-g67c084a
commit 67c084ab0accbe7773ac328916fdfa58237e9c2b
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat Nov 11 17:58:31 2017 +0100
Releasing debian version 3.8.6-1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/debian/changelog b/debian/changelog
index 98fd115..fb00770 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+tryton-modules-stock (3.8.6-1) unstable; urgency=medium
+
+ * Merging upstream version 3.8.6.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Sat, 11 Nov 2017 17:58:31 +0100
+
tryton-modules-stock (3.8.5-1) unstable; urgency=medium
* Add the actual upstream maintainer key to signing-key.asc.
commit 9088f212e7f1310237ed7ab6184eecef7f8762c4
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat Nov 11 17:58:30 2017 +0100
Merging upstream version 3.8.6.
diff --git a/.drone.yml b/.drone.yml
new file mode 100644
index 0000000..9d7c769
--- /dev/null
+++ b/.drone.yml
@@ -0,0 +1,9 @@
+image: python2.7
+env:
+ - POSTGRESQL_URI=postgresql://postgres@127.0.0.1:5432/
+ - MYSQL_URI=mysql://root@127.0.0.1:3306/
+script:
+ - pip install tox
+ - tox -e "py27-{sqlite,postgresql}"
+services:
+ - postgres
diff --git a/CHANGELOG b/CHANGELOG
index 32ffed7..c4097b4 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.8.6 - 2017-11-07
+* Bug fixes (see mercurial logs for details)
+
Version 3.8.5 - 2017-08-08
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index 9f74a52..369531e 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_stock
-Version: 3.8.5
+Version: 3.8.6
Summary: Tryton module for stock and inventory
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/move.py b/move.py
index 0d0b24f..aa85487 100644
--- a/move.py
+++ b/move.py
@@ -515,7 +515,7 @@ class Move(Workflow, ModelSQL, ModelView):
@classmethod
def search_rec_name(cls, name, clause):
- return [('product',) + tuple(clause[1:])]
+ return [('product.rec_name',) + tuple(clause[1:])]
def _update_product_cost_price(self, direction):
"""
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 0000000..e9d2876
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,17 @@
+[tox]
+envlist = py27-{sqlite,postgresql,mysql},pypy-{sqlite,postgresql}
+
+[testenv]
+commands = {envpython} setup.py test
+deps =
+ py27-postgresql: psycopg2 >= 2.0
+ pypy-postgresql: psycopg2cffi >= 2.5
+ mysql: MySQL-python
+setenv =
+ sqlite: TRYTOND_DATABASE_URI={env:SQLITE_URI:sqlite://}
+ postgresql: TRYTOND_DATABASE_URI={env:POSTGRESQL_URI:postgresql://}
+ mysql: TRYTOND_DATABASE_URI={env:MYSQL_URI:mysql://}
+ sqlite: DB_NAME={env:SQLITE_NAME::memory:}
+ postgresql: DB_NAME={env:POSTGRESQL_NAME:test}
+ mysql: DB_NAME={env:MYSQL_NAME:test}
+install_command = pip install --pre --find-links https://trydevpi.tryton.org/ {opts} {packages}
diff --git a/tryton.cfg b/tryton.cfg
index 4659926..643a1cb 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=3.8.5
+version=3.8.6
depends:
company
currency
diff --git a/trytond_stock.egg-info/PKG-INFO b/trytond_stock.egg-info/PKG-INFO
index 851f686..4945e79 100644
--- a/trytond_stock.egg-info/PKG-INFO
+++ b/trytond_stock.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond-stock
-Version: 3.8.5
+Version: 3.8.6
Summary: Tryton module for stock and inventory
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/trytond_stock.egg-info/SOURCES.txt b/trytond_stock.egg-info/SOURCES.txt
index 9b033ee..20f189d 100644
--- a/trytond_stock.egg-info/SOURCES.txt
+++ b/trytond_stock.egg-info/SOURCES.txt
@@ -1,24 +1,35 @@
+.drone.yml
+.hgtags
CHANGELOG
COPYRIGHT
INSTALL
LICENSE
MANIFEST.in
README
+__init__.py
+configuration.py
configuration.xml
customer_return_restocking_list.odt
delivery_note.odt
internal_shipment.odt
+inventory.py
inventory.xml
+location.py
location.xml
+move.py
move.xml
party.xml
+period.py
period.xml
picking_list.odt
+product.py
product.xml
setup.py
+shipment.py
shipment.xml
stock.xml
supplier_restocking_list.odt
+tox.ini
tryton.cfg
./__init__.py
./configuration.py
@@ -127,11 +138,13 @@ locale/nl_NL.po
locale/pt_BR.po
locale/ru_RU.po
locale/sl_SI.po
+tests/__init__.py
tests/scenario_stock_average_cost_price.rst
tests/scenario_stock_inventory.rst
tests/scenario_stock_reporting.rst
tests/scenario_stock_shipment_internal.rst
tests/scenario_stock_shipment_out.rst
+tests/test_stock.py
trytond_stock.egg-info/PKG-INFO
trytond_stock.egg-info/SOURCES.txt
trytond_stock.egg-info/dependency_links.txt
--
tryton-modules-stock
More information about the tryton-debian-vcs
mailing list