Skip to content

Commit 6580a91

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents 8fb02d4 + 2d94f93 commit 6580a91

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

.travis.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,14 @@ python:
88
addons:
99
apt:
1010
packages:
11-
libxmlsec1
12-
libxmlsec1-dev
13-
libxmlsec1-openssl
14-
pkg-config
11+
- libssl-dev
12+
- libxmlsec1
13+
- libxmlsec1-dev
14+
- libxmlsec1-openssl
15+
- libxslt1-dev
16+
- pkg-config
1517

1618
install:
17-
- 'travis_retry pip install -e ".[test]" --use-mirrors'
19+
- travis_retry pip install -e ".[test]"
1820

19-
script: 'py.test'
21+
script: py.test

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# python-xmlsec
22
[![Build Status](https://travis-ci.org/mehcode/python-xmlsec.png?branch=master)](https://travis-ci.org/mehcode/python-xmlsec)
3-
[![PyPi Version](https://pypip.in/v/xmlsec/badge.png)](https://pypi.python.org/pypi/xmlsec)
4-
![PyPi Downloads](https://pypip.in/d/xmlsec/badge.png)
3+
[![PyPi Version](https://img.shields.io/pypi/v/xmlsec.svg)](https://pypi.python.org/pypi/xmlsec)
4+
![PyPi Downloads](https://img.shields.io/pypi/dm/xmlsec.svg)
55
> Python bindings for the XML Security Library.
66
77
## Usage

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,9 @@ def make_extension(name, cython=True):
9292
'Operating System :: OS Independent',
9393
'Programming Language :: Cython',
9494
'Programming Language :: Python :: 2.7',
95+
'Programming Language :: Python :: 3',
9596
'Programming Language :: Python :: 3.3',
97+
'Programming Language :: Python :: 3.4',
9698
'Topic :: Text Processing :: Markup :: XML'
9799
],
98100
author='Ryan Leckey',

src/xmlsec/meta.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version = '0.3.1'
1+
version = '0.3.3'
22
description = 'Python bindings for the XML Security Library.'

0 commit comments

Comments
 (0)