Skip to content

Commit

Permalink
global: support for Python 3.5 and wheels
Browse files Browse the repository at this point in the history
* Adds support for Python 3.5 and wheels.

* Adds deploy section for automatic PyPI releases.  (closes #64)

Signed-off-by: Jiri Kuncar <jiri.kuncar@cern.ch>
  • Loading branch information
jirikuncar committed Jan 4, 2016
1 parent e57f2d4 commit 97b8f82
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
13 changes: 12 additions & 1 deletion .travis.yml
@@ -1,6 +1,6 @@
# This file is part of Dictdiffer.
#
# Copyright (C) 2014 CERN.
# Copyright (C) 2014, 2016 CERN.
#
# Dictdiffer is free software; you can redistribute it and/or modify
# it under the terms of the MIT License; see LICENSE file for more
Expand All @@ -15,6 +15,7 @@ python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"

install:
- pip install --upgrade pip
Expand All @@ -32,3 +33,13 @@ after_success:

notifications:
email: false

deploy:
provider: pypi
user: jirikuncar
password:
secure: tntrBrJuE3sqJcLxxbzPGj6zltrP/7GgSOFt7q/wn20JWc1SHhutkFqzO2DMShT4YZBlCwwL4jCLsVdMtARCsBIh/p2glTDLFAKC7DfSqwzsnGk/6Q5uyB7NOn7/GPXItyGEJB8cb6QgsMlpMCqv7+mjrL8+HhWVCaZz4B9lzeY=
distributions: "sdist bdist_wheel"
on:
tags: true
repo: inveniosoftware/dictdiffer
10 changes: 10 additions & 0 deletions setup.cfg
@@ -0,0 +1,10 @@
# This file is part of Dictdiffer.
#
# Copyright (C) 2016 CERN.
#
# Dictdiffer is free software; you can redistribute it and/or modify
# it under the terms of the MIT License; see LICENSE file for more
# details.

[bdist_wheel]
universal = 1
3 changes: 2 additions & 1 deletion setup.py
@@ -1,7 +1,7 @@
# This file is part of Dictdiffer.
#
# Copyright (C) 2013 Fatih Erikli.
# Copyright (C) 2014, 2015 CERN.
# Copyright (C) 2014, 2015, 2016 CERN.
#
# Dictdiffer is free software; you can redistribute it and/or modify
# it under the terms of the MIT License; see LICENSE file for more
Expand Down Expand Up @@ -78,6 +78,7 @@ def run_tests(self):
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
Expand Down

0 comments on commit 97b8f82

Please sign in to comment.