mirror of
https://github.com/capnproto/pycapnp.git
synced 2025-03-04 16:35:04 +01:00
Merge pull request #176 from cjermain/bug/fix-python-versions
Replacing end-of-life Python versions with live versions
This commit is contained in:
commit
59fdf948a6
4 changed files with 7 additions and 7 deletions
|
@ -4,10 +4,10 @@ sudo: required
|
|||
language: python
|
||||
|
||||
python:
|
||||
- 2.6
|
||||
- 2.7
|
||||
- 3.3
|
||||
- 3.4
|
||||
- 3.5
|
||||
- 3.6
|
||||
- pypy
|
||||
|
||||
env:
|
||||
|
|
|
@ -28,7 +28,7 @@ If you wish to install using the latest upstream C++ Cap'n Proto:
|
|||
|
||||
## Python Versions
|
||||
|
||||
Python 2.6/2.7 are supported as well as Python 3.2+. PyPy 2.1+ is also supported.
|
||||
Python 2.7, Python 3.4+, and PyPy 2.1+ are supported.
|
||||
|
||||
One oddity to note is that `Text` type fields will be treated as byte strings under Python 2, and unicode strings under Python 3. `Data` fields will always be treated as byte strings.
|
||||
|
||||
|
|
6
setup.py
6
setup.py
|
@ -171,11 +171,11 @@ setup(
|
|||
'Programming Language :: C++',
|
||||
'Programming Language :: Cython',
|
||||
'Programming Language :: Python :: 2',
|
||||
'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 :: 3.6',
|
||||
'Programming Language :: Python :: Implementation :: PyPy',
|
||||
'Topic :: Communications'],
|
||||
)
|
||||
|
|
2
tox.ini
2
tox.ini
|
@ -1,5 +1,5 @@
|
|||
[tox]
|
||||
envlist = py27,py32,py33,py34
|
||||
envlist = py27,py34,py35,py36
|
||||
|
||||
[testenv]
|
||||
deps=
|
||||
|
|
Loading…
Add table
Reference in a new issue