Skip to content

Commit

Permalink
Merge 73f27fe into 38a54b6
Browse files Browse the repository at this point in the history
  • Loading branch information
litleleprikon committed Feb 18, 2019
2 parents 38a54b6 + 73f27fe commit dd5634b
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 3 deletions.
10 changes: 10 additions & 0 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: "2"
plugins:
shellcheck:
enabled: true
bandit:
enabled: true
markdownlint:
enabled: true
pep8:
enabled: true
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

- n/a

## 1.0.0 - 2019-02-07

### Added

- Initial release
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ A Python client for the [Akamai Fast Purge API](https://developer.akamai.com/api

[![Build Status](https://travis-ci.org/release-engineering/python-fastpurge.svg?branch=master)](https://travis-ci.org/release-engineering/python-fastpurge)
[![Coverage Status](https://coveralls.io/repos/github/release-engineering/python-fastpurge/badge.svg?branch=master)](https://coveralls.io/github/release-engineering/python-fastpurge?branch=master)
[![Maintainability](https://api.codeclimate.com/v1/badges/2a5d60f6ddb557d88055/maintainability)](https://codeclimate.com/github/release-engineering/python-fastpurge/maintainability)

- [Source](https://github.com/release-engineering/python-fastpurge)
- [Documentation](https://release-engineering.github.io/python-fastpurge/)
Expand All @@ -27,7 +28,6 @@ Install the `fastpurge` package from PyPI.
pip install fastpurge
```


Usage Example
-------------

Expand All @@ -49,7 +49,6 @@ result = purged.result()
print("Purge completed:", result)
```


License
-------

Expand Down
2 changes: 1 addition & 1 deletion scripts/push-docs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -e

enabled(){
if [ "$TRAVIS_BRANCH" != "master" ] || [ $TRAVIS_PULL_REQUEST != "false" ]; then
if [ "$TRAVIS_BRANCH" != "master" ] || [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
return 1
fi
}
Expand Down
3 changes: 3 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,6 @@ commands=

[flake8]
max-line-length = 100

[pep8]
max-line-length = 100

0 comments on commit dd5634b

Please sign in to comment.