Skip to content

Commit 8d47b8b

Browse files
authored
Merge pull request #211 from codelion/fix-git-workflow
fix publish
2 parents 2df04fb + 54fd419 commit 8d47b8b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip
24-
pip install setuptools wheel
24+
pip install build
2525
- name: Build package
2626
run: |
27-
python setup.py sdist bdist_wheel
27+
python -m build
2828
- name: Publish package distributions to PyPI
2929
uses: pypa/gh-action-pypi-publish@release/v1
3030

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ OptILLM is an OpenAI API compatible optimizing inference proxy that implements s
1313
1. **Entry Points**:
1414
- `optillm.py` - Main Flask server with inference routing
1515
- `optillm/inference.py` - Local inference engine with transformer models
16-
- Setup via `setup.py` with console script `optillm=optillm:main`
16+
- Setup via `pyproject.toml` with console script `optillm=optillm:main`
1717

1818
2. **Optimization Techniques** (`optillm/`):
1919
- **Reasoning**: `cot_reflection.py`, `plansearch.py`, `leap.py`, `reread.py`

optillm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import os
33

44
# Version information
5-
__version__ = "0.1.21"
5+
__version__ = "0.1.22"
66

77
# Get the path to the root optillm.py
88
spec = util.spec_from_file_location(

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "optillm"
7-
version = "0.1.21"
7+
version = "0.1.22"
88
description = "An optimizing inference proxy for LLMs."
99
readme = "README.md"
1010
license = "Apache-2.0"

0 commit comments

Comments
 (0)