Skip to content

Commit

Permalink
Merge pull request #1213 from mindsdb/staging
Browse files Browse the repository at this point in the history
[hotfix] Release 24.3.3.1
  • Loading branch information
paxcema authored Mar 19, 2024
2 parents 1516448 + ae13566 commit ec6171b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 34 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ jobs:
deploy:
runs-on: ubuntu-latest
environment: PublishCI
needs: test
if: github.ref == 'refs/heads/stable' || github.event_name == 'release'
steps:
Expand All @@ -57,11 +58,13 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
pip install poetry
- name: Build
run: poetry build
- name: Publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
POETRY_HTTP_BASIC_PYPI_USERNAME: __token__
POETRY_HTTP_BASIC_PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist
twine upload dist/*
poetry publish --dry-run
poetry publish
26 changes: 0 additions & 26 deletions .github/workflows/release.yml

This file was deleted.

2 changes: 1 addition & 1 deletion lightwood/__about__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__title__ = 'lightwood'
__package_name__ = 'lightwood'
__version__ = '24.3.3.0'
__version__ = '24.3.3.1'
__description__ = "Lightwood is a toolkit for automatic machine learning model building"
__email__ = "[email protected]"
__author__ = 'MindsDB Inc'
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "lightwood"
version = "24.3.3.0"
version = "24.3.3.1"
description = "Lightwood is Legos for Machine Learning."
authors = ["MindsDB Inc."]
license = "GPL-3.0-only"
Expand Down

0 comments on commit ec6171b

Please sign in to comment.