summaryrefslogtreecommitdiff
path: root/setup.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix flake8 indentation warning in setup.pyTim Graham2017-11-041-28/+30
|
* Add testing for Python 3.6Tim Graham2017-10-301-0/+1
|
* Remove testing for Python 3.3Tim Graham2016-12-211-1/+0
|
* Fix #109: Remove testing for Python 2.6 and 3.2Tim Graham2016-12-171-2/+0
|
* Add testing for Python 3.5Tim Graham2016-12-141-1/+2
|
* (#72) setup.py will now pull the version number directly from memcache.py ↵JT2015-10-011-1/+2
| | | | (using setuptools.depends.get_module_constant) in order to prevent discrepancies
* Release automation.Sean Reifschneider2015-07-311-1/+1
|
* Port memcache to Python 3Victor Stinner2015-04-231-4/+4
| | | | | | | | | | | | | | | | | | * travis: make python 3 tests voting (cannot fail anymore) * setup.py: add Python 3 classifiers * Encode unicode key to UTF-8: add _encode_key() method * Add _encode_cmd() helper method to format a memcache command as a byte string (bytes%args will only be supported in Python 3.5) * Rewrite _map_and_prefix_keys() code converting keys * _val_to_store_info() now accepts Unicode: Unicode is encoded to UTF-8 * _set('cas') doesn't call _val_to_store_info() anymore when it's not needed: begin by checking if the key is in the cas_ids dictionary * Process server reply as bytes * _recv_value() now clears the _FLAG_COMPRESSED flag after decompressing to simplify the code * On Python 3, _recv_value() now decodes byte strings from UTF-8 * Simplify check_key(), _encode_key() now encodes Unicode to UTF-8 * Replace u'...' with six.u('...') in tests for Python 3.2
* Ready for release.release-1.54Sean Reifschneider2014-09-211-4/+4
|
* Clean up long lines for pep8Marc Abramowitz2014-06-091-16/+16
|
* Resolving conflicts from cabrera-py33_fixes.Sean Reifschneider2014-06-071-4/+4
|
* Complete the Python3 work!Alex Gaynor2014-05-101-0/+8
|
* Fixing reference to README in setup.pyrelease-1.50Sean Reifschneider2013-05-061-1/+1
|
* Patch from Jehiah Czebotar to catch an additional server disconnectSean Reifschneider2008-04-291-0/+26
situation.