Skip to content

Commit

Permalink
Fix pypi deploy issues
Browse files Browse the repository at this point in the history
  • Loading branch information
configcat-developer committed Sep 30, 2019
1 parent 7e77636 commit 661b70f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 18 deletions.
16 changes: 8 additions & 8 deletions integrations/circleci/orb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ examples:
usage:
version: 2.1
orbs:
configcat: configcat/[email protected].2
configcat: configcat/[email protected].3
workflows:
main:
jobs:
Expand All @@ -18,7 +18,7 @@ examples:
usage:
version: 2.1
orbs:
configcat: configcat/[email protected].2
configcat: configcat/[email protected].3
workflows:
main:
jobs:
Expand All @@ -31,7 +31,7 @@ examples:
usage:
version: 2.1
orbs:
configcat: configcat/[email protected].2
configcat: configcat/[email protected].3
jobs:
build:
docker:
Expand All @@ -44,7 +44,7 @@ examples:
usage:
version: 2.1
orbs:
configcat: configcat/[email protected].2
configcat: configcat/[email protected].3
jobs:
build:
docker:
Expand All @@ -63,7 +63,7 @@ examples:
usage:
version: 2.1
orbs:
configcat: configcat/[email protected].2
configcat: configcat/[email protected].3
jobs:
build:
executor: configcat/default
Expand All @@ -78,7 +78,7 @@ executors:
docker-image-version:
description: The version of the ConfigCat flag reference validator docker image.
type: string
default: 1.0.2
default: 1.0.3
docker:
- image: configcat/flag-reference-validator:<< parameters.docker-image-version >>

Expand All @@ -89,7 +89,7 @@ commands:
validator-version:
description: The version of the ConfigCat flag reference validator pypi package.
type: string
default: 1.0.2
default: 1.0.3
steps:
- run:
name: Install dependencies
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
default: false
executor:
name: default
docker-image-version: 1.0.2
docker-image-version: 1.0.3
working_directory: /ref-validator
steps:
- checkout:
Expand Down
13 changes: 3 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,6 @@
import setuptools


def readme():
with open('README.md') as f:
return f.read()


version = "1.0.2"

version = "1.0.3"

setuptools.setup(
name='configcat-flag-reference-validator',
Expand All @@ -18,8 +11,8 @@ def readme():
license='MIT',
author='ConfigCat',
author_email='[email protected]',
description='ConfigCat flag reference validator.',
long_description=readme(),
description='ConfigCat feature flag reference validator.',
long_description="This tool can be used for discovering ConfigCat feature flag usages in your source code and validating them against your own ConfigCat configuration dashboard. It searches for ConfigCat SDK usage and greps the feature flag keys from the source code, then it compares them with the keys got from your ConfigCat dashboard.",
long_description_content_type="text/markdown",
install_requires=['requests>=2.19.1'],
classifiers=[
Expand Down

0 comments on commit 661b70f

Please sign in to comment.