Skip to content

Commit

Permalink
Added tests and classifier for Python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
agronholm committed Dec 24, 2016
1 parent 51d06a0 commit afa64ec
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 12 deletions.
19 changes: 10 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ python:
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "pypy"

before_install:
Expand All @@ -27,6 +28,14 @@ script: tox

after_success: coveralls

notifications:
irc:
channels:
- "chat.freenode.net#apscheduler"
on_success: change
use_notice: true
skip_join: true

deploy:
provider: pypi
user: agronholm
Expand All @@ -35,13 +44,5 @@ deploy:
distributions: sdist bdist_wheel
on:
tags: true
repo: agronholm/apscheduler
python: "3.5"

notifications:
irc:
channels:
- "chat.freenode.net#apscheduler"
on_success: change
use_notice: true
skip_join: true
repo: agronholm/apscheduler
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
keywords='scheduling cron',
license='MIT',
Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[tox]
envlist = py27,py33,py34,py35,pypy,flake8
envlist = py27, py33, py34, py35, py36, pypy, flake8
skip_missing_interpreters = true

[tox:travis]
2.7 = py27
3.3 = py33
3.4 = py34
3.5 = py35, flake8
3.5 = py35
3.6 = py36, flake8
pypy = pypy

[testenv]
Expand Down

0 comments on commit afa64ec

Please sign in to comment.