Include deps in release process#184
Merged
nschloe merged 1 commit intonschloe:mainfrom Apr 12, 2026
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Thank you for the new 0.5.12 release!
It's missing the bootstrap.min.css and d3.min.js deps:
❯ python -X importtime -c "import random" 2> 1.log❯ tuna 1.log 127.0.0.1 - - [11/Apr/2026 23:29:35] "GET / HTTP/1.1" 200 - 127.0.0.1 - - [11/Apr/2026 23:29:35] "GET /static/tuna.css HTTP/1.1" 200 - 127.0.0.1 - - [11/Apr/2026 23:29:35] "GET /static/bootstrap.min.css HTTP/1.1" 200 - 127.0.0.1 - - [11/Apr/2026 23:29:35] "GET /static/d3.min.js HTTP/1.1" 200 - 127.0.0.1 - - [11/Apr/2026 23:29:35] "GET /static/icicle.js HTTP/1.1" 200 - ---------------------------------------- 127.0.0.1 - - [11/Apr/2026 23:29:35] "GET /static/favicon256.png HTTP/1.1" 200 - ---------------------------------------- Exception occurred during processing of request from ('127.0.0.1', 57522) Exception occurred during processing of request from ('127.0.0.1', 57521) Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/3.14/lib/python3.14/socketserver.py", line 697, in process_request_thread self.finish_request(request, client_address) ~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Library/Frameworks/Python.framework/Versions/3.14/lib/python3.14/socketserver.py", line 362, in finish_request self.RequestHandlerClass(request, client_address, self) ~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Library/Frameworks/Python.framework/Versions/3.14/lib/python3.14/socketserver.py", line 766, in __init__ self.handle() ~~~~~~~~~~~^^ File "/Library/Frameworks/Python.framework/Versions/3.14/lib/python3.14/http/server.py", line 496, in handle self.handle_one_request() ~~~~~~~~~~~~~~~~~~~~~~~^^ File "/Library/Frameworks/Python.framework/Versions/3.14/lib/python3.14/http/server.py", line 484, in handle_one_request method() ~~~~~~^^ File "/Library/Frameworks/Python.framework/Versions/3.14/lib/python3.14/site-packages/tuna/main.py", line 65, in do_GET with filepath.open("rb") as fh: ~~~~~~~~~~~~~^^^^^^ Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/3.14/lib/python3.14/pathlib/__init__.py", line 771, in open return io.open(self, mode, buffering, encoding, errors, newline) ~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ FileNotFoundError: [Errno 2] No such file or directory: '/Library/Frameworks/Python.framework/Versions/3.14/lib/python3.14/site-packages/tuna/web/static/bootstrap.min.css' ---------------------------------------- File "/Library/Frameworks/Python.framework/Versions/3.14/lib/python3.14/socketserver.py", line 697, in process_request_thread self.finish_request(request, client_address) ~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Library/Frameworks/Python.framework/Versions/3.14/lib/python3.14/socketserver.py", line 362, in finish_request self.RequestHandlerClass(request, client_address, self) ~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Library/Frameworks/Python.framework/Versions/3.14/lib/python3.14/socketserver.py", line 766, in __init__ self.handle() ~~~~~~~~~~~^^ File "/Library/Frameworks/Python.framework/Versions/3.14/lib/python3.14/http/server.py", line 496, in handle self.handle_one_request() ~~~~~~~~~~~~~~~~~~~~~~~^^ File "/Library/Frameworks/Python.framework/Versions/3.14/lib/python3.14/http/server.py", line 484, in handle_one_request method() ~~~~~~^^ File "/Library/Frameworks/Python.framework/Versions/3.14/lib/python3.14/site-packages/tuna/main.py", line 65, in do_GET with filepath.open("rb") as fh: ~~~~~~~~~~~~~^^^^^^ File "/Library/Frameworks/Python.framework/Versions/3.14/lib/python3.14/pathlib/__init__.py", line 771, in open return io.open(self, mode, buffering, encoding, errors, newline) ~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ FileNotFoundError: [Errno 2] No such file or directory: '/Library/Frameworks/Python.framework/Versions/3.14/lib/python3.14/site-packages/tuna/web/static/d3.min.js' ----------------------------------------These are normally provided by running
just dep, so I think we need to do that in the release workflow.Note: I've not tested this.