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
2 changes: 1 addition & 1 deletion BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ genrule(
"//chipcompiler:chipcompiler_python_sources",
"//chipcompiler:chipcompiler_runtime_data",
],
outs = ["raw_wheel/ecc-0.1.0a0-py3-none-any.whl"],
outs = ["raw_wheel/ecc-0.1.0a1-py3-none-any.whl"],
tools = ["@multitool//tools/uv"],
cmd = """
set -euo pipefail
Expand Down
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module(
name = "ecc",
version = "0.1.0-alpha",
version = "0.1.0-alpha.1",
)

bazel_dep(name = "rules_python", version = "1.7.0")
Expand Down
2 changes: 1 addition & 1 deletion bazel/scripts/build-wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ venv_python="$smoke_dir/venv/bin/python"
# ecc-dreamplace and ecc-tools are not on PyPI; install them from GitHub URLs first,
# then install the local ecc wheel so uv resolves the remaining PyPI deps.
"$UV" pip install --python "$venv_python" \
"https://github.com/openecos-projects/ecc-tools/releases/download/v0.1.0-alpha/ecc_tools-0.1.0a0-py3-none-manylinux_2_34_x86_64.whl" \
"https://github.com/openecos-projects/ecc-tools/releases/download/v0.1.0-alpha.1/ecc_tools-0.1.0a1-py3-none-manylinux_2_34_x86_64.whl" \
"https://github.com/openecos-projects/ecc-dreamplace/releases/download/v0.1.0-alpha.1/ecc_dreamplace-0.1.0a1-py3-none-manylinux_2_34_x86_64.whl" \
"$final_whl"

Expand Down
2 changes: 1 addition & 1 deletion chipcompiler/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# chipcompiler package
__version__ = "0.1.0-alpha"
__version__ = "0.1.0-alpha.1"
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ requires = [ "uv-build>=0.8.5" ]

[project]
name = "ecc"
version = "0.1.0-alpha"
version = "0.1.0-alpha.1"
readme = "README.md"
authors = [
{ name = "Emin", email = "me@emin.chat" },
Expand All @@ -21,7 +21,7 @@ classifiers = [
]
dependencies = [
"ecc-dreamplace==0.1.0a1",
"ecc-tools==0.1.0a0",
"ecc-tools==0.1.0a1",
"fastapi>=0.109",
"klayout>=0.30.2",
"matplotlib>=3.4",
Expand Down Expand Up @@ -77,7 +77,7 @@ explicit = true

[tool.uv.sources]
ecc-dreamplace = { url = "https://github.com/openecos-projects/ecc-dreamplace/releases/download/v0.1.0-alpha.1/ecc_dreamplace-0.1.0a1-py3-none-manylinux_2_34_x86_64.whl" }
ecc-tools = { url = "https://github.com/openecos-projects/ecc-tools/releases/download/v0.1.0-alpha/ecc_tools-0.1.0a0-py3-none-manylinux_2_34_x86_64.whl" }
ecc-tools = { url = "https://github.com/openecos-projects/ecc-tools/releases/download/v0.1.0-alpha.1/ecc_tools-0.1.0a1-py3-none-manylinux_2_34_x86_64.whl" }
torch = { index = "pytorch-cpu" }

[tool.ruff]
Expand Down
18 changes: 5 additions & 13 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading