Skip to content

Commit 1ebf32b

Browse files
authored
Merge pull request #160 from uiuc-focal-lab/pypi
Bump version to 0.4.3
2 parents 6c0b2d9 + eab882c commit 1ebf32b

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

.github/workflows/publish_to_pypi.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
python -m build --wheel --outdir dist/
3636
3737
- name: Upload wheels
38-
uses: actions/upload-artifact@v3
38+
uses: actions/upload-artifact@v4
3939
with:
4040
name: wheels-${{ matrix.os }}-${{ matrix.python-version }}
4141
path: dist/*.whl
@@ -68,7 +68,7 @@ jobs:
6868
twine check dist/*.tar.gz
6969
7070
- name: Upload sdist
71-
uses: actions/upload-artifact@v3
71+
uses: actions/upload-artifact@v4
7272
with:
7373
name: sdist
7474
path: dist/*.tar.gz
@@ -87,7 +87,7 @@ jobs:
8787

8888
steps:
8989
- name: Download all artifacts
90-
uses: actions/download-artifact@v3
90+
uses: actions/download-artifact@v4
9191
with:
9292
path: dist
9393

@@ -101,5 +101,4 @@ jobs:
101101
uses: pypa/gh-action-pypi-publish@release/v1
102102
with:
103103
packages-dir: flat_dist
104-
verbose: true
105-
# skip-existing: true # Uncomment if you want to skip existing versions
104+
verbose: true

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ SynCode depends on HuggingFace [transformers](https://github.com/huggingface/tra
6969

7070
| SynCode version | Required transformers version | Python version |
7171
| -------------- | ----------------------------- | -------------- |
72-
| `v0.4.2` (latest) | `v4.44.0` | 3.6 - 3.12 |
72+
| `v0.4.3` (latest) | `v4.44.0` | 3.6 - 3.12 |
7373

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

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 = "syncode"
7-
version="0.4.2"
7+
version="0.4.3"
88
requires-python = ">=3.6,<3.13"
99
description = "Grammar-guided code generation tool"
1010
readme = "README.md"

setup.py

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

1919
setuptools.setup(
2020
name="syncode",
21-
version="0.4.2",
21+
version="0.4.3",
2222
author="Shubham Ugare",
2323
author_email="shubhamugare@gmail.com",
2424
description="This package provides the tool for grammar augmented LLM generation.",

0 commit comments

Comments
 (0)