Skip to content

Commit b762747

Browse files
author
Raphael Mitsch
committed
Bump version.
1 parent 941f6a9 commit b762747

3 files changed

Lines changed: 3 additions & 9 deletions

File tree

examples/demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import outlines
1515
import pydantic
1616

17-
from sieves import Doc, Engine, Pipeline, tasks
17+
from sieves import Doc, Engine, tasks
1818

1919

2020
class Country(pydantic.BaseModel, frozen=True):

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = sieves
3-
version = 0.12.0
3+
version = 0.13.0
44
author = Matthew Upson, Nick Sorros, Raphael Mitsch, Matthew Maufe, Angelo Di Gianvito
55
author_email = hi@mantisnlp.com
66
long_description = file: README.md

sieves/serialization.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,7 @@ def get_version() -> str:
7979
8080
:return str: Version string from setup.cfg metadata.
8181
"""
82-
# TODO This doesn't work in PyPi package. Alternative way to fetch version dynamically?
83-
# config = configparser.ConfigParser()
84-
# setup_cfg = Path(__file__).parent.parent / "setup.cfg"
85-
# config.read(setup_cfg)
86-
# version = config["metadata"]["version"]
87-
88-
return "0.12.0"
82+
return "0.13.0"
8983

9084
version: str = get_version()
9185
cls_name: str

0 commit comments

Comments
 (0)