summaryrefslogtreecommitdiff
path: root/setup.py
Commit message (Collapse)AuthorAgeFilesLines
* Use zope.proxy 4.3.0 so that tests pass on Py3.issue40Jason Madden2017-09-131-3/+3
|
* Use features and an optional_build_extissue33bJason Madden2017-09-111-46/+73
| | | | | | | | | Just like zope.interface (copied from there). Fixes #33. This should eliminate any chance of polluting (local) wheel caches if PURE_PYTHON happens to be defined.
* Switch to modern 'coverage' environment and run doctests on all versionsJason Madden2017-09-071-8/+7
| | | | | | | | | | | | | | Based on #29. Drop Python 3.3. Enable coveralls on Travis CI, and also fix using interpreters that aren't there in the new default 'trusty' image. Coverage is not at 100% and in fact appears to have dropped (I show 92% in one run, vs the previous reported 97%), but that's because `coverage` and coveralls report files that aren't even imported (we have a lot of those in the 'tests' package)...nosetests didn't.
* svbTres Seaver2017-05-171-1/+1
|
* Prep 4.1.1 release.4.1.1Tres Seaver2017-05-171-1/+1
|
* svbTres Seaver2017-04-241-1/+1
|
* Prep 4.1.0 release.4.1.0Tres Seaver2017-04-241-1/+1
|
* Fix iteration of BTrees.items() in pure-python; and 3.6 supportJason Madden2017-04-241-13/+18
| | | | | | | | | | | | | | | Also fix ``list(proxy_btree.items())`` (or a list comprehension of the same) in Python 3, which wants the ``__len__`` for a hint. This is a central place to make sure these all behave consistently. Fixes #20 Also drop pypy3 As a 3.2 implementation, it's not supported by pip anymore. There is a much more recent version, 3.5-beta, but it's not on Travis yet. The 3.3-alpha which is on Travis is a dead end.
* Drop support for Python 2.6 and 3.2.Tres Seaver2016-03-231-3/+1
|
* Note explicit support for Python 3.5Felix Yan2015-11-081-0/+1
|
* svbTres Seaver2015-06-021-1/+1
|
* Prep 4.0.3 release.4.0.3Tres Seaver2015-06-021-1/+1
|
* svbTres Seaver2015-06-021-1/+1
|
* Prep 4.0.2 release.4.0.2Tres Seaver2015-06-021-1/+1
|
* Bow to our new PEP 440 overlords.Tres Seaver2014-12-291-1/+1
| | | | [ci skip]
* svbTres Seaver2014-03-191-1/+1
|
* Prep 4.0.1 release.4.0.1Tres Seaver2014-03-191-1/+1
|
* Note explicit support for Python 3.4.Tres Seaver2014-03-171-0/+1
|
* svbTres Seaver2013-07-091-1/+1
|
* Prepare 4.0.0 final release.4.0.0Tres Seaver2013-07-091-1/+1
|
* Set more precise development version, some packages require 4.0.0a1Gediminas Paulauskas2013-03-141-1/+1
|
* svbTres Seaver2013-03-111-1/+1
|
* Prep 4.0.0b1 release.4.0.0b1Tres Seaver2013-03-111-1/+1
|
* Note support for PyPy.pure_python_proxyTres Seaver2013-03-111-0/+1
|
* Add zope.testrunner dep to make Travis happy.Stephan Richter2013-03-051-2/+3
|
* Back to development: 4.0.0a6Stephan Richter2013-02-281-1/+1
|
* Preparing release 4.0.0a54.0.0a5Stephan Richter2013-02-281-1/+1
|
* - Undo changes from 4.0.0a4. Instead, ``zope.untrustedpython`` is onlyStephan Richter2013-02-281-0/+2
| | | | included during Python 2 installs.
* Back to development: 4.0.0a5Stephan Richter2013-02-281-1/+1
|
* - Remove ``untrustedpython`` extra again, since we do not want to supportStephan Richter2013-02-281-1/+0
| | | | | ``zope.untrustedpython`` in ZTK 2.0. If BBB is really needed, we will create a 3.10.0 release.
* Releasing 4.0.0a4Andrey Lebedev2013-02-191-1/+1
|
* More tests are running under python-3Andrey Lebedev2013-02-191-1/+16
| | | | | | Include documentation doctests into main test suite. Documentation is updated to be valid under python-3 and some critical bugs in python-3 are revealed.
* svbTres Seaver2013-02-151-1/+1
|
* Prep 4.0.0a3 release.4.0.0a3Tres Seaver2013-02-151-1/+1
|
* svbTres Seaver2013-02-151-1/+1
|
* Prep 4.0.0a2 release.4.0.0a2Tres Seaver2013-02-151-1/+2
|
* svbTres Seaver2013-02-141-1/+1
|
* Prep 4.0.0a1 release.4.0.0a1Tres Seaver2013-02-141-1/+1
| | | | Alpha because we don't yet have PyPy support.
* Note Py3k support.Tres Seaver2013-02-131-0/+7
| | | | | | | Add Trove classifiers for supported versions. Note that PyPy is not yet supported: we need a pure-Python version of the _proxy and _zope_security_checker implementations.
* Remove all traces of untrustedpython and remove RestrictedPythonStephan Richter2013-02-121-1/+0
| | | | dependency.
* zope.security.untrustedpython moved to separate projectAndrey Lebedev2013-02-121-1/+0
| | | | | The code was extracted to zope.untrustedpython project to simplify porting zope.security to python-3.x.
* Nest into Github.Tres Seaver2013-01-111-3/+3
| | | | | | | | - Denominate files to indicate ReST. - Drop .bzrignore. - Add MANIFEST.in FBO users w/o setuptools_git.
* Move 'untrustedinterpreter.txt' to narrative docs.Tres Seaver2012-12-231-4/+0
|
* Get 'setup.py test' working.Tres Seaver2012-12-211-0/+6
|
* Add 'setup.py docs' alias.Tres Seaver2012-12-211-0/+1
| | | | | Installs 'Sphinx' and `repoze.sphinx.autointerface'.
* Add 'setup.py dev' aliasTres Seaver2012-12-211-2/+9
| | | | | Runs 'setup.py develop' plus installs 'nose' and ``coverage'.
* Use setup_requires + deferred module header to build w/o svn:externals.Tres Seaver2012-12-191-10/+57
|
* Bump ``zope.proxy`` dependency to ">= 4.1.0" to enable compilation on Py3k.Tres Seaver2012-12-191-1/+1
|
* Drop support for Python 2.4 and 2.5.Tres Seaver2012-05-171-1/+1
| | | | | | | | | | | | | Replace deprecated 'zope.component.adapts' usage with equivalent 'zope.component.adapter' decorator. Replace deprecated 'zope.interface.classProvides' usage with equivalent 'zope.interface.provider' decorator. Replace deprecated 'zope.interface.implements' usage with equivalent 'zope.interface.implementer' decorator.
* Back to development: 3.8.4Michael Howitz2011-09-241-1/+1
|