Navigation Menu

Skip to content

Commit

Permalink
Merge pull request #26 from jacebrowning/release/v0.5
Browse files Browse the repository at this point in the history
Release v0.5
  • Loading branch information
jacebrowning committed Sep 10, 2016
2 parents 8779d0c + e20b7ae commit 604c576
Show file tree
Hide file tree
Showing 16 changed files with 269 additions and 145 deletions.
5 changes: 2 additions & 3 deletions .appveyor.yml
@@ -1,6 +1,6 @@
environment:
global:
RANDOM_SEED: 12345
RANDOM_SEED: 0
matrix:
- PYTHON_MAJOR: 2
PYTHON_MINOR: 7
Expand All @@ -20,8 +20,7 @@ install:
- set PATH=%PATH%;C:\MinGW\bin
- make --version
# Install project dependencies
- touch setup.py && make env
- make depends
- make install

build: off

Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -35,10 +35,12 @@ Icon*
.coverage
.coverage.*
/htmlcov
/xmlreport
/pyunit.xml
*.tmp

# Build and release directories
*.spec
/build
/dist

Expand Down
6 changes: 6 additions & 0 deletions .pylintrc
Expand Up @@ -8,6 +8,12 @@ max-line-length=80

ignore-long-lines=^.*((https?:)|(pragma:)|(TODO:)).*$

[SIMILARITIES]

min-similarity-lines=4

ignore-imports=yes

[REPORTS]

reports=no
Expand Down
29 changes: 12 additions & 17 deletions .travis.yml
@@ -1,35 +1,30 @@
sudo: false

language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 2.7
- 3.3
- 3.4
- 3.5

cache:
pip: true
directories:
- env
- env

env:
global:
- RANDOM_SEED=12345
- RANDOM_SEED=0

install:
- pip install coveralls scrutinizer-ocular

before_script:
- make env
- make depends
- make install

script:
- make check
- make test
- make check
- make test

after_success:
- coveralls
- ocular
- pip install coveralls scrutinizer-ocular
- coveralls
- ocular

notifications:
email:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,10 @@
# Revision History

## 0.5 (2016/09/09)

- Added logging to debug errors with the `--version` option.
- Added retry logic in cases where the API returns server errors.

## 0.4 (2016/08/22)

- Added client-side caching to reduce network traffic.
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Expand Up @@ -14,10 +14,10 @@

### Installation

Create a virtual environment:
Install project dependencies into a virtual environment:

```sh
$ make env
$ make install
```

## Development Tasks
Expand Down

0 comments on commit 604c576

Please sign in to comment.