diff --git a/.travis.yml b/.travis.yml index 4ce4c19..552a33d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,18 @@ +sudo: false language: python +# note: this will make python3.5 available during testing because it is +# not available by defaut at the time of this writing +python: + - 3.5 + install: pip install tox --use-mirrors env: - TOX_ENV=py26 - TOX_ENV=py27 - - TOX_ENV=py32 - TOX_ENV=py33 - TOX_ENV=py34 + - TOX_ENV=py35 - TOX_ENV=pypy - TOX_ENV=pypy3 - TOX_ENV=pep8 diff --git a/README.md b/README.md index aff758b..0db6d6b 100644 --- a/README.md +++ b/README.md @@ -5,9 +5,10 @@ # solrq `solrq` is a Python Solr query utility. It helps making query strings for Solr and also helps with escaping reserved characters. `solrq` is has no external -dependencies and is compatibile with `python2.6`, `python2.7`, `python3.2`, -`python3.3`, `python3.4`, `pypy` and `pypy3` . It might be compatibile with -other python releases/implentations but this has not been tested yet. +dependencies and is compatibile with `python2.6`, `python2.7`, +`python3.3`, `python3.4`, `python3.5`, `pypy` and `pypy3`. +It might be compatibile with other python releases/implentations but this has +not been tested yet or is no longer tested (e.g `python3.2`). pip install solrq @@ -139,7 +140,7 @@ Simply as: ```python >>> from datetime import datetime, timedelta >>> Q(date=datetime(1970, 1, 1)) - + >>> # note that timedeltas has any sense mostly with ranges >>> Q(delta=timedelta(days=1)) diff --git a/setup.py b/setup.py index 4a97075..459ed1c 100644 --- a/setup.py +++ b/setup.py @@ -65,9 +65,9 @@ def read_md(f): 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: Implementation :: PyPy', 'Topic :: Internet :: WWW/HTTP :: Indexing/Search', ], diff --git a/src/solrq/__init__.py b/src/solrq/__init__.py index 3b6e24a..030e11b 100644 --- a/src/solrq/__init__.py +++ b/src/solrq/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -VERSION = (0, 0, 5) # PEP 386 # noqa +VERSION = (1, 0, 0) # PEP 386 # noqa __version__ = ".".join([str(x) for x in VERSION]) # noqa import re diff --git a/tox.ini b/tox.ini index 13609df..c71194c 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py26,py27,py32,py33,py34,pypy,pypy3,pep8,coverage +envlist = py26,py27,py33,py34,py35,pypy,pypy3,pep8,coverage [testenv] passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH