File tree 4 files changed +11
-34
lines changed
4 files changed +11
-34
lines changed Original file line number Diff line number Diff line change 46
46
47
47
deploy :
48
48
runs-on : ubuntu-latest
49
+ environment : PublishCI
49
50
needs : test
50
51
if : github.ref == 'refs/heads/stable' || github.event_name == 'release'
51
52
steps :
@@ -57,11 +58,13 @@ jobs:
57
58
- name : Install dependencies
58
59
run : |
59
60
python -m pip install --upgrade pip
60
- pip install setuptools wheel twine
61
- - name : Build and publish
61
+ pip install poetry
62
+ - name : Build
63
+ run : poetry build
64
+ - name : Publish
62
65
env :
63
- TWINE_USERNAME : __token__
64
- TWINE_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
66
+ POETRY_HTTP_BASIC_PYPI_USERNAME : __token__
67
+ POETRY_HTTP_BASIC_PYPI_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
65
68
run : |
66
- python setup.py sdist
67
- twine upload dist/*
69
+ poetry publish --dry-run
70
+ poetry publish
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
__title__ = 'lightwood'
2
2
__package_name__ = 'lightwood'
3
- __version__ = '24.3.3.0 '
3
+ __version__ = '24.3.3.1 '
4
4
__description__ = "Lightwood is a toolkit for automatic machine learning model building"
5
5
__email__ = "community@mindsdb.com"
6
6
__author__ = 'MindsDB Inc'
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
4
4
5
5
[tool .poetry ]
6
6
name = " lightwood"
7
- version = " 24.3.3.0 "
7
+ version = " 24.3.3.1 "
8
8
description = " Lightwood is Legos for Machine Learning."
9
9
authors = [" MindsDB Inc." ]
10
10
license = " GPL-3.0-only"
You can’t perform that action at this time.
0 commit comments