We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28f0827 commit 8341455Copy full SHA for 8341455
chipflow_lib/platforms/silicon.py
@@ -9,6 +9,7 @@
9
from amaranth.back import rtlil
10
from amaranth.hdl import Fragment
11
from amaranth.hdl._ir import PortDirection
12
+from dotenv import load_dotenv
13
14
from .. import ChipFlowError
15
@@ -164,6 +165,7 @@ def __init__(self, pads):
164
165
self._pads = pads
166
self._ports = {}
167
self._files = {}
168
+ load_dotenv()
169
170
def request(self, name):
171
if "$" in name:
pyproject.toml
@@ -30,6 +30,7 @@ dependencies = [
30
"jsonschema>=4.17.3",
31
"doit>=0.36.0",
32
"requests>=2.30.0",
33
+ "python-dotenv>=1.0.1",
34
]
35
36
[project.scripts]
0 commit comments