File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ version : 2.1
2+
3+ workflows :
4+ deploy :
5+ jobs :
6+ - upload_to_pypi :
7+ filters :
8+ # Ignore any commit on any branch by default
9+ branches :
10+ ignore : /.*/
11+ # Run only when a tag is created
12+ tags :
13+ only : /^v.+\..+\..+/
14+
15+ jobs :
16+ upload_to_pypi :
17+ docker :
18+ - image : circleci/python:3.6
19+ environment :
20+ POETRY_HTTP_BASIC_PYPI_USERNAME : __token__
21+
22+ steps :
23+ - checkout
24+ - run : pip3 install --upgrade poetry
25+ - run : poetry build
26+ - run : POETRY_HTTP_BASIC_PYPI_PASSWORD=${PYPI_PASSWORD} poetry publish
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11[tool .poetry ]
22packages = [ { include = " brainframe/api" } ]
33name = " brainframe-api"
4- version = " 0.27.0"
4+ version = " 0.27.0.dev1 "
55description = " Provides a Python wrapper around the BrainFrame REST API."
66authors = [" Aotu" ]
77license = " BSD-3-Clause"
You can’t perform that action at this time.
0 commit comments