Skip to content

Commit

Permalink
Chores: update license year; upgrade invoke; test py34-py36
Browse files Browse the repository at this point in the history
  • Loading branch information
sloria committed Jan 8, 2017
1 parent 945f26e commit 4175bc7
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Expand Up @@ -6,6 +6,7 @@ language: python
sudo: false

python:
- "3.6"
- "3.5"
- "3.4"
- "2.7"
Expand All @@ -20,7 +21,7 @@ env:

install:
- pip install -U .
- pip install invoke pytest scripttest flake8
- pip install invoke==0.14.0 pytest scripttest flake8
- pip install -U "$SHELLS"

script: inv test
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,4 +1,4 @@
Copyright 2014-2016 Steven Loria
Copyright 2014-2017 Steven Loria

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion dev-requirements.txt
@@ -1,5 +1,5 @@
# Task running
invoke
invoke==0.14.0

# Linting
flake8==2.4.1
Expand Down
7 changes: 4 additions & 3 deletions docs/conf.py
@@ -1,4 +1,5 @@
# -*- coding: utf-8 -*-
import datetime as dt
import sys
import os

Expand All @@ -16,7 +17,7 @@
master_doc = 'index'

project = u'konch'
copyright = u'2014-2016'
copyright = u'2014-{0:%Y}'.format(dt.datetime.utcnow())

version = release = konch.__version__

Expand All @@ -39,8 +40,8 @@
html_theme_path = ['_themes']

html_sidebars = {
'index': ['side-primary.html', 'searchbox.html'],
'**': ['side-secondary.html', 'localtoc.html',
'index': ['side-primary.html', 'searchbox.html'],
'**': ['side-secondary.html', 'localtoc.html',
'relations.html', 'searchbox.html']
}

Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -51,6 +51,7 @@ def read(fname):
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: System :: Shells',
Expand Down

0 comments on commit 4175bc7

Please sign in to comment.