Skip to content

Commit d102993

Browse files
committed
Bump to v0.1.9 for powerlift.
1 parent d2966fb commit d102993

File tree

6 files changed

+14
-6
lines changed

6 files changed

+14
-6
lines changed

python/powerlift/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and the versioning is mostly derived from [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## v0.1.9 - 2024-06-21
8+
### Fixed
9+
- Performance improvements to Azure CI executor.
10+
11+
## v0.1.8 - 2024-06-19
12+
### Fixed
13+
- Missing adjustments for v0.1.7
14+
715
## v0.1.7 - 2024-06-18
816
### Fixed
917
- Raise exception keyword previously not honored for execution runner.

python/powerlift/scripts/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# syntax=docker/dockerfile:1
22
FROM python:3.9-slim-buster
33

4-
COPY powerlift-0.1.8-py3-none-any.whl .
4+
COPY powerlift-0.1.9-py3-none-any.whl .
55

66
# Install dependencies
77
RUN apt-get update && \
88
apt-get install -y --no-install-recommends build-essential unixodbc-dev libpq-dev python-dev && \
9-
pip install powerlift-0.1.8-py3-none-any.whl[postgres,mssql,testing] && \
9+
pip install powerlift-0.1.9-py3-none-any.whl[postgres,mssql,testing] && \
1010
apt-get clean && \
1111
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \
1212
apt-get autoremove -y

python/powerlift/scripts/build-docker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ cd "$(dirname "${BASH_SOURCE[0]}")"
55
mkdir -p ../build/docker
66
cp Dockerfile ../build/docker/
77
cd .. && python -m build && cp dist/* build/docker/
8-
cd build/docker && docker build -t interpretml/powerlift:0.1.8 .
8+
cd build/docker && docker build -t interpretml/powerlift:0.1.9 .

python/powerlift/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="powerlift",
8-
version="0.1.8",
8+
version="0.1.9",
99
author="The InterpretML Contributors",
1010
author_email="[email protected]",
1111
description="Interactive Benchmarking for Machine Learning.",

python/powerlift/src/powerlift/executors/azure_ci.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def __init__(
124124
azure_client_secret: str,
125125
subscription_id: str,
126126
resource_group: str,
127-
image: str = "interpretml/powerlift:0.1.8",
127+
image: str = "interpretml/powerlift:0.1.9",
128128
n_running_containers: int = 1,
129129
num_cores: int = 1,
130130
mem_size_gb: int = 2,

python/powerlift/src/powerlift/executors/docker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class InsecureDocker(LocalMachine):
4444
def __init__(
4545
self,
4646
store: Store,
47-
image: str = "interpretml/powerlift:0.1.8",
47+
image: str = "interpretml/powerlift:0.1.9",
4848
n_running_containers: int = None,
4949
wheel_filepaths: List[str] = None,
5050
docker_db_uri: str = None,

0 commit comments

Comments
 (0)