Skip to content

Commit

Permalink
Upgrade to 0.3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
ethe committed Sep 26, 2018
1 parent fd274b9 commit f20b451
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ python:
- 3.3
- 3.4
- 3.5
- 3.6
- 3.7
- pypy

matrix:
Expand Down
9 changes: 8 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,18 @@ Changelog
Version 0.3.9
-------------

Released on September 26, 2018.

- update cython version.

Version 0.3.9
-------------

Released on August 26, 2016.

- add support for timeout and ssl in `make_server` / `make_client` helper
funcs, via `#204`_, `#205`_ and `#229`_.
- add support for `thrift_file` path in http protocol, via `#225`_.
- add support for `thrift_file` path in http protocol, via `#225`_.

- preserve traceback when re-raise undeclared exception, via `#206`_.
- performance improvement by dynamically compile spec'd `__init__`
Expand Down
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@
ext_modules.append(Extension("thriftpy.protocol.cybin",
["thriftpy/protocol/cybin/cybin.c"]))

setup(name="thriftpy",
setup(name="thriftpy2",
version=version,
description="Pure python implementation of Apache Thrift.",
keywords="thrift python thriftpy",
author="Lx Yu",
author_email="[email protected]",
author="ThriftPy Organization",
author_email="[email protected]",
packages=find_packages(exclude=['benchmark', 'docs', 'tests']),
package_data={"thriftpy": ["contrib/tracking/tracking.thrift"]},
entry_points={},
Expand All @@ -95,6 +95,8 @@
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
])
2 changes: 1 addition & 1 deletion thriftpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from .hook import install_import_hook, remove_import_hook
from .parser import load, load_module, load_fp

__version__ = '0.3.9'
__version__ = '0.3.10'
__python__ = sys.version_info
__all__ = ["install_import_hook", "remove_import_hook", "load", "load_module",
"load_fp"]
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = flake8, py26, py27, py33, py34, py35, pypy
envlist = flake8, py26, py27, py33, py34, py35, py36, py37, pypy

[testenv]
changedir =
Expand All @@ -10,7 +10,7 @@ commands =

deps =
pytest
tornado
tornado==4.0
toro
cython
py26: ordereddict
Expand Down

0 comments on commit f20b451

Please sign in to comment.