Skip to content

Commit ec6171b

Browse files
authored
Merge pull request #1213 from mindsdb/staging
[hotfix] Release 24.3.3.1
2 parents 1516448 + ae13566 commit ec6171b

File tree

4 files changed

+11
-34
lines changed

4 files changed

+11
-34
lines changed

.github/workflows/ligthtwood.yml .github/workflows/lightwood.yml

+9-6
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ jobs:
4646
4747
deploy:
4848
runs-on: ubuntu-latest
49+
environment: PublishCI
4950
needs: test
5051
if: github.ref == 'refs/heads/stable' || github.event_name == 'release'
5152
steps:
@@ -57,11 +58,13 @@ jobs:
5758
- name: Install dependencies
5859
run: |
5960
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
6265
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 }}
6568
run: |
66-
python setup.py sdist
67-
twine upload dist/*
69+
poetry publish --dry-run
70+
poetry publish

.github/workflows/release.yml

-26
This file was deleted.

lightwood/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__title__ = 'lightwood'
22
__package_name__ = 'lightwood'
3-
__version__ = '24.3.3.0'
3+
__version__ = '24.3.3.1'
44
__description__ = "Lightwood is a toolkit for automatic machine learning model building"
55
__email__ = "community@mindsdb.com"
66
__author__ = 'MindsDB Inc'

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "lightwood"
7-
version = "24.3.3.0"
7+
version = "24.3.3.1"
88
description = "Lightwood is Legos for Machine Learning."
99
authors = ["MindsDB Inc."]
1010
license = "GPL-3.0-only"

0 commit comments

Comments
 (0)