diff --git a/pdm.lock b/pdm.lock index 83cd438..f97eb27 100644 --- a/pdm.lock +++ b/pdm.lock @@ -5,7 +5,7 @@ groups = ["default", "daq", "dev", "doc", "examples", "lint", "notebook", "numpy", "yowasp"] strategy = ["inherit_metadata"] lock_version = "4.5.0" -content_hash = "sha256:12f87088a4325c82e411efa17bec11cac82ebc705bfc7b51170289a2dd3a223a" +content_hash = "sha256:21a1e594c0f5c41790b3da5668192a11e77be68596f2b85ed7d09d67631683cd" [[metadata.targets]] requires_python = ">=3.10" @@ -25,9 +25,6 @@ files = [ name = "amaranth" version = "0.5.4.dev2" requires_python = "~=3.8" -git = "https://github.com/amaranth-lang/amaranth.git" -ref = "v0.5.x" -revision = "31459d5e6b27bc6678589e64ee90b80a6d07b7fb" summary = "Amaranth hardware definition language" groups = ["default", "daq", "dev", "examples", "notebook", "yowasp"] dependencies = [ @@ -92,14 +89,11 @@ name = "amaranth" version = "0.5.4.dev2" extras = ["builtin-yosys"] requires_python = "~=3.8" -git = "https://github.com/amaranth-lang/amaranth.git" -ref = "v0.5.x" -revision = "31459d5e6b27bc6678589e64ee90b80a6d07b7fb" summary = "Amaranth hardware definition language" groups = ["yowasp"] dependencies = [ - "amaranth @ git+https://github.com/amaranth-lang/amaranth.git@v0.5.x", "amaranth-yosys>=0.40", + "amaranth==0.5.4.dev2", ] [[package]] @@ -163,7 +157,7 @@ requires_python = "~=3.8" git = "https://github.com/whitequark/Boneless-CPU.git" revision = "951bd07a0b3d47e8d659b92a616c5ce4c22763ac" summary = "Resource-efficient 16-bit CPU architecture for FPGA control plane" -groups = ["daq", "examples", "notebook"] +groups = ["daq"] dependencies = [ "amaranth~=0.5.4", "parse~=1.12", @@ -334,7 +328,7 @@ name = "colorama" version = "0.4.6" requires_python = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" summary = "Cross-platform colored terminal text." -groups = ["dev", "doc", "notebook", "yowasp"] +groups = ["daq", "dev", "doc", "notebook", "yowasp"] files = [ {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, @@ -1036,7 +1030,7 @@ name = "more-itertools" version = "10.6.0" requires_python = ">=3.9" summary = "More routines for operating on iterables, beyond itertools" -groups = ["daq", "examples", "notebook"] +groups = ["daq"] marker = "python_version < \"3.12\"" files = [ {file = "more-itertools-10.6.0.tar.gz", hash = "sha256:2cd7fad1009c31cc9fb6a035108509e6547547a7a738374f10bd49a09eb3ee3b"}, @@ -1152,7 +1146,7 @@ files = [ name = "parse" version = "1.20.2" summary = "parse() is the opposite of format()" -groups = ["daq", "examples", "notebook"] +groups = ["daq"] files = [ {file = "parse-1.20.2-py2.py3-none-any.whl", hash = "sha256:967095588cb802add9177d0c0b6133b5ba33b1ea9007ca800e526f42a85af558"}, {file = "parse-1.20.2.tar.gz", hash = "sha256:b41d604d16503c79d81af5165155c0b20f6c8d6c559efa66b4b695c3e5a0a0ce"}, @@ -1364,7 +1358,7 @@ files = [ name = "pyserial" version = "3.5" summary = "Python Serial Port Extension" -groups = ["daq", "examples", "notebook"] +groups = ["daq"] files = [ {file = "pyserial-3.5-py2.py3-none-any.whl", hash = "sha256:c4451db6ba391ca6ca299fb3ec7bae67a5c55dde170964c7a14ceefec02f2cf0"}, {file = "pyserial-3.5.tar.gz", hash = "sha256:3c77e014170dfffbd816e6ffc205e9842efb10be9f58ec16d3e8675b4925cddb"}, @@ -1954,6 +1948,20 @@ files = [ {file = "tornado-6.4.2.tar.gz", hash = "sha256:92bad5b4746e9879fd7bf1eb21dce4e3fc5128d71601f80005afa39237ad620b"}, ] +[[package]] +name = "tqdm" +version = "4.67.1" +requires_python = ">=3.7" +summary = "Fast, Extensible Progress Meter" +groups = ["daq"] +dependencies = [ + "colorama; platform_system == \"Windows\"", +] +files = [ + {file = "tqdm-4.67.1-py3-none-any.whl", hash = "sha256:26445eca388f82e72884e0d580d5464cd801a3ea01e63e5601bdff9ba6a48de2"}, + {file = "tqdm-4.67.1.tar.gz", hash = "sha256:f8aef9c52c08c13a65f30ea34f4e5aac3fd1a34959879d7e59e63027286627f2"}, +] + [[package]] name = "traitlets" version = "5.14.3" diff --git a/pyproject.toml b/pyproject.toml index a83e802..9c19903 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,6 +20,7 @@ daq = [ "pyserial>=3.5", "boneless-cpu @ git+https://github.com/whitequark/Boneless-CPU.git", "more-itertools>=10.6.0; python_version < \"3.12\"", + "tqdm>=4.67.1", ] [build-system] requires = ["pdm-backend"]