diff --git a/.circleci/config.yml b/.circleci/config.yml index c4ef88f..9a8f9fe 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -93,18 +93,28 @@ workflows: version: 2 build_test: jobs: - - build + - build: + filters: + tags: + only: /.*/ - lint: requires: - build + filters: + tags: + only: /.*/ - test: requires: - build + filters: + tags: + only: /.*/ - deploy: requires: + - lint - test filters: tags: - only: /[0-9]+(\.[0-9]+)*/ + only: /.*/ branches: ignore: /.*/ diff --git a/setup.py b/setup.py index a9fcff4..f5eb3ac 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ def run(self): def readme(): """print long description""" - with open("README.rst") as f: + with open("README.md") as f: return f.read()