Skip to content

Commit cd6286d

Browse files
committed
fix pyproject
1 parent f40994a commit cd6286d

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,3 @@ __pycache__/
88
/.pdm-python
99
/.pdm-build
1010
/.venv
11-
/pdm.lock

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ license-files = [
1515

1616
requires-python = ">=3.11"
1717
dependencies = [
18-
"amaranth>=0.5,<0.6",
19-
"chipflow-lib @ git+https://github.com/ChipFlow/chipflow-lib.git",
20-
"amaranth-soc @ git+https://github.com/ChipFlow/amaranth-soc.git",
18+
"amaranth>=0.5,<0.7",
19+
"chipflow-lib @ git+https://github.com/ChipFlow/chipflow-lib",
20+
"amaranth-soc @ git+https://github.com/ChipFlow/amaranth-soc",
2121
"amaranth-stdio @ git+https://github.com/amaranth-lang/amaranth-stdio",
2222
]
2323

tools/export_ips.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def list_resources(mm: MemoryMap) -> dict:
5151
d = {}
5252
for resource, rname, _ in mm.resources():
5353
cls = resource.__class__
54-
print(f"adding resource {resource}. {type(resource)} {cls.__name__}, {cls.__qualname__}, {cls.__doc__}")
54+
#print(f"adding resource {resource}. {type(resource)} {cls.__name__}, {cls.__qualname__}, {cls.__doc__}")
5555
ri = mm.find_resource(resource)
5656
d[name_to_str(rname)] = {
5757
'resource': docs_for_obj(resource),

0 commit comments

Comments
 (0)