Skip to content

Commit 41e2629

Browse files
Anton BjörklundAggrathon
Anton Björklund
authored andcommitted
version bump
1 parent 9564e58 commit 41e2629

File tree

2 files changed

+13
-14
lines changed

2 files changed

+13
-14
lines changed

.github/workflows/python-publish.yml

+12-13
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,15 @@ jobs:
1515
id-token: write
1616

1717
steps:
18-
- uses: actions/checkout@v3
19-
- name: Set up Python
20-
uses: actions/setup-python@v3
21-
with:
22-
python-version: "3.x"
23-
- name: Install dependencies
24-
run: |
25-
python -m pip install --upgrade pip
26-
python -m pip install build
27-
- name: Build package
28-
run: python -m build
29-
- name: Publish package
30-
uses: pypa/[email protected]
18+
- uses: actions/checkout@v4
19+
- name: Set up Python
20+
uses: actions/setup-python@v5
21+
with:
22+
python-version: '3.x'
23+
- name: Install dependencies
24+
run: |
25+
python -m pip install --upgrade pip build
26+
- name: Build package
27+
run: python -m build
28+
- name: Publish package to PyPI
29+
uses: pypa/gh-action-pypi-publish@release/v1

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "slise"
3-
version = "2.2.3"
3+
version = "2.2.4"
44
authors = [{ name = "Anton Björklund", email = "[email protected]" }]
55
description = "The SLISE algorithm for robust regression and explanations of black box models"
66
readme = "README.md"

0 commit comments

Comments
 (0)