Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
recursive-include syncode/parsers/grammars *.lark
recursive-include syncode/larkm/grammars *.lark
recursive-include syncode/evaluation/mxeval *.py *.json *.yaml *.md
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ SynCode depends on HuggingFace [transformers](https://github.com/huggingface/tra

| SynCode version | Required transformers version | Python version |
| -------------- | ----------------------------- | -------------- |
| `v0.4.3` (latest) | `v4.44.0` | 3.6 - 3.12 |
| `v0.4.4` (latest) | `v4.44.0` | 3.6 - 3.12 |

**Note:** Python 3.13 is not currently supported due to dependency constraints.

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 = "setuptools.build_meta"

[project]
name = "syncode"
version="0.4.3"
version="0.4.4"
requires-python = ">=3.6,<3.13"
description = "Grammar-guided code generation tool"
readme = "README.md"
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

setuptools.setup(
name="syncode",
version="0.4.3",
version="0.4.4",
author="Shubham Ugare",
author_email="shubhamugare@gmail.com",
description="This package provides the tool for grammar augmented LLM generation.",
Expand All @@ -34,4 +34,7 @@
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_data={
"syncode.evaluation.mxeval": ["*.json", "*.py"],
},
)