Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.

Commit c2df5fc

Browse files
author
Samuel Hassine
committed
Release with CircleCI
1 parent b5dbd5c commit c2df5fc

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

.circleci/config.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,15 @@ jobs:
4747
workflows:
4848
opencti_client_python:
4949
jobs:
50-
- build
50+
- build:
51+
filters:
52+
tags:
53+
only: /.*/
5154
- deploy:
5255
requires:
53-
- build
56+
- build
57+
filters:
58+
tags:
59+
only: /[0-9]+(\.[0-9]+)+(\.[0-9]+)*/
60+
branches:
61+
ignore: /.*/

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
print("warning: pypandoc module not found, could not convert Markdown to RST")
1313
read_md = lambda f: open(f, 'r').read()
1414

15-
VERSION = "1.0.6"
15+
VERSION = "1.0.7"
1616

1717
class VerifyVersionCommand(install):
1818
description = 'verify that the git tag matches our version'
@@ -27,7 +27,7 @@ def run(self):
2727

2828
setup(
2929
name='pycti',
30-
version='1.0.6',
30+
version=VERSION,
3131
description='Python API client for OpenCTI.',
3232
long_description='Official Python client for the OpenCTI platform.',
3333
author='OpenCTI',

0 commit comments

Comments
 (0)