mirror of
https://github.com/sprockets/sprockets.logging.git
synced 2024-12-28 11:24:10 +00:00
commit
1ac1bc015f
4 changed files with 22 additions and 11 deletions
24
.travis.yml
24
.travis.yml
|
@ -1,14 +1,22 @@
|
||||||
%YAML 1.1
|
|
||||||
---
|
|
||||||
language: python
|
language: python
|
||||||
python:
|
python:
|
||||||
- 2.7
|
- 2.7
|
||||||
- pypy
|
- pypy
|
||||||
- 3.4
|
- 3.4
|
||||||
before_install:
|
before_install:
|
||||||
- pip install nose coverage codecov
|
- pip install nose coverage codecov
|
||||||
install:
|
install:
|
||||||
- pip install -e .
|
- pip install -e .
|
||||||
script: nosetests
|
script: nosetests
|
||||||
after_success:
|
after_success:
|
||||||
- codecov
|
- codecov
|
||||||
|
deploy:
|
||||||
|
distributions: sdist bdist_wheel
|
||||||
|
provider: pypi
|
||||||
|
user: sprockets
|
||||||
|
password:
|
||||||
|
secure: hLpyNQOIO8yvvltkQUjMQrTE63E08fDCN4b4wdBEhLwbP7TLJmY2UllXtZyk8uahc0YcvFOin+ykhv4c/22AnuwCqkFaGVM6UjkNPzs3iYQF0P/soygoj+89FvsGq5ew/pk8/Dz1dkNjoDINT99DegRCW/sGNkc31kWIx2p4iefHQf/LRKezkVMzscSFihEWlOViQQX/6QJpNmJ7KpMGSPPajRX6gSkvhMVfVk1A4EVH7EzDJKE1q7YI5JA8bqAa3U3VQMv4rvptCt3+6SuZqh5BPj0cgvCz62Ng9hyQy5p0+/sBLg3IO9YDkGEde8YS4vzcy01IQaGS4MlSegdQrllkF9FEvj7ywC49d2qrn4+qFsqZe61VkG2C/JxnAbyuHCMqXKeYC74unoC+qP2+7edHMDXH8grLZSR05u6MUFlf1olnvh+lz0WGyLcf10rf2zPb8dIaHMokbsbALPbk5KjGIcGsc1vso2WzUFBs0Ik5bKpDmggOBCYGUS+BFL+vcXGDX8PeoYsPjLMrCnsHc975sEjvCUZtmpCjDG6fYeddhVgLfbRUGGXvz9cVDVHCXgpL9/6EqlD/8GqUQyzKCXPWYiqPVRnPLUTAorJPPiK4utuWeqc34s/InIC8KTtiyelroR87S0e3N7z5aeXxtwdAR5yFvjx7o3ewgSNWwlU=
|
||||||
|
on:
|
||||||
|
python: 3.4
|
||||||
|
tags: true
|
||||||
|
all_branches: true
|
||||||
|
|
|
@ -3,5 +3,6 @@ include README.rst
|
||||||
include HISTORY.rst
|
include HISTORY.rst
|
||||||
include tests.py
|
include tests.py
|
||||||
graft docs
|
graft docs
|
||||||
|
graft examples
|
||||||
global-exclude __pycache__
|
global-exclude __pycache__
|
||||||
global-exclude *.pyc
|
global-exclude *.pyc
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
Version History
|
Version History
|
||||||
===============
|
===============
|
||||||
|
|
||||||
Next Release
|
`1.0.0`_ Jun 09, 2015
|
||||||
------------
|
---------------------
|
||||||
- Added :class:`sprockets.logging.ContextFilter`
|
- Added :class:`sprockets.logging.ContextFilter`
|
||||||
|
|
||||||
|
.. _1.0.0: https://github.com/sprockets/sprockets.logging/compare/0.0.0...1.0.0
|
||||||
|
|
|
@ -9,7 +9,7 @@ from __future__ import absolute_import
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
|
|
||||||
version_info = (0, 0, 0)
|
version_info = (1, 0, 0)
|
||||||
__version__ = '.'.join(str(v) for v in version_info)
|
__version__ = '.'.join(str(v) for v in version_info)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue