This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "SQLObject development repository".
The branch, master has been updated
via 2a85338c232bda8c4c0ecb50266491c5a04d414c (commit)
from 53a22ac8a7222a86f4638cc00f24d19169838233 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://sourceforge.net/p/sqlobject/sqlobject/ci/2a85338c232bda8c4c0ecb50266491c5a04d414c
commit 2a85338c232bda8c4c0ecb50266491c5a04d414c
Author: Oleg Broytman <ph...@ph...>
Date: Sat Jun 17 20:27:52 2017 +0300
Use ppu to cleanup pip cache
Use remove-old-files.py from ppu to cleanup pip cache at Travis and AppVeyor.
diff --git a/.travis.yml b/.travis.yml
index aa7286a..95b8883 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -101,7 +101,7 @@ before_install:
sudo gsec -user sysdba -pass masterkey -add test -pw test;
fi
-install: travis_retry pip install tox coveralls codecov
+install: travis_retry pip install tox coveralls codecov ppu
script: tox -e ${TOXENV}
@@ -109,3 +109,6 @@ after_success:
- cd sqlobject
- coveralls
- codecov
+
+before_cache:
+ - remove-old-files.py -o 180 ~/.cache/pip
diff --git a/appveyor.yml b/appveyor.yml
index eff4614..ea3779b 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -245,7 +245,7 @@ install:
- "python --version"
- "python -c \"import struct; print(struct.calcsize('P') * 8)\""
- "pip --version"
- - "pip install tox"
+ - "pip install tox ppu"
# List ODBC drivers
- ps: Get-OdbcDriver -Platform 32-bit | Select-Object -ExpandProperty Name
- ps: Get-OdbcDriver -Platform 64-bit | Select-Object -ExpandProperty Name
@@ -270,3 +270,6 @@ build: false
test_script:
- "%CMD_IN_ENV% tox -e %TOX_ENV%"
+
+after_test:
+ - "remove-old-files.py -o 180 %LOCALAPPDATA%\\pip\\Cache"
diff --git a/docs/News.rst b/docs/News.rst
index c14515a..3810aa8 100644
--- a/docs/News.rst
+++ b/docs/News.rst
@@ -10,9 +10,21 @@ News
SQLObject 3.4.0 (master)
========================
+Features
+--------
+
* Python 2.6 is no longer supported. The minimal supported version is
Python 2.7.
+Minor features
+--------------
+
+* Use base64.b64encode/b64decode instead of deprecated
+ encodestring/decodestring.
+
+Drivers (work in progress)
+--------------------------
+
* Encode binary values for py-postgresql driver. This fixes the
last remaining problems with the driver.
@@ -20,8 +32,11 @@ SQLObject 3.4.0 (master)
* List all drivers in extras_require in setup.py.
-* Use base64.b64encode/b64decode instead of deprecated
- encodestring/decodestring.
+Tests
+-----
+
+* Use remove-old-files.py from ppu to cleanup pip cache
+ at Travis and AppVeyor.
SQLObject 3.3.0
===============
-----------------------------------------------------------------------
Summary of changes:
.travis.yml | 5 ++++-
appveyor.yml | 5 ++++-
docs/News.rst | 19 +++++++++++++++++--
3 files changed, 25 insertions(+), 4 deletions(-)
hooks/post-receive
--
SQLObject development repository
|