Skip to content

Commit

Permalink
Release 0.8.0
Browse files Browse the repository at this point in the history
- Split openerp_proxy project to set of smaler project
  to avoid bringing lot of unneccessary dependencies.
- This project contains core features, aiming to minimize dependencies.
- Features, not included here, all this features will be still available
  in openerp_proxy project, which will depend on this one in feature:
    - Extensions (especialy repr extension)
    - Sessions
    - Shell
    - Experimental code (introduced in openerp_proxy 0.7.0)
    - Plugin - Diagraming
- New features added:
    - Connector: 'local'. It allows to connect to local odoo instalce, without http;
  • Loading branch information
katyukha committed Jan 17, 2017
1 parent 76083cd commit 2711aec
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ dist: trusty
language: python
python:
- "2.7"
#- "3.3"
#- "3.4"
- "3.3"
- "3.4"
- "3.5"

cache:
Expand Down
9 changes: 6 additions & 3 deletions release.bash
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ usage="
--py2 - use python 2
--py3 - use python 3 (default)
--reuse-venv - do not remove virtual environment, and reusse it on next call
--no-docs - do not generate and upload docs
"

Expand All @@ -45,6 +46,9 @@ do
--py3)
USE_PY_VERSION='python3';
;;
--no-docs)
NO_DOCS=1;
;;
--reuse-venv)
REUSE_VENV=1;
;;
Expand Down Expand Up @@ -102,9 +106,8 @@ function release_implementation {
# Build [and upload to pypi] project
python $SCRIPTPATH/setup.py $setup_options;

build_docs;

if [ -z $DRY_RUN ] && [ -z $TEST_PYPI_INDEX ]; then
if [ -z $DRY_RUN ] && [ -z $TEST_PYPI_INDEX ] && [ -z $NO_DOCS ]; then
build_docs;
python setup.py upload_docs;
fi
}
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords=['openerp', 'odoo', 'odoo-rpc', 'rpc', 'xmlrpc',
'xml-rpc', 'json-rpc', 'jsonrpc', 'odoo-client', 'ipython'],
keywords=['odoo', 'odoo-rpc', 'rpc', 'xmlrpc',
'xml-rpc', 'json-rpc', 'jsonrpc', 'odoo-client', 'openerp'],
extras_require={
'all': ['anyfield'],
},
Expand Down

0 comments on commit 2711aec

Please sign in to comment.