Compare commits
13 commits
f621ec944f
...
e7ba0bad7b
Author | SHA1 | Date | |
---|---|---|---|
e7ba0bad7b | |||
ac8c88e2af | |||
59948ec517 | |||
dea02e3a4e | |||
3dc623f1c7 | |||
4cef77e4e0 | |||
8ad8bad438 | |||
a0fb62ac7a | |||
d35d3f61fb | |||
4ea80a33f8 | |||
c33acfa1c8 | |||
bafe70ed37 | |||
fa10a813f2 |
15 changed files with 236 additions and 105 deletions
|
@ -7,6 +7,9 @@ jobs:
|
||||||
runs-on: based-alpine
|
runs-on: based-alpine
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
- name: setup cache
|
||||||
|
id: uv-cache
|
||||||
|
uses: https://git.ficd.sh/ficd/uv-cache@v1
|
||||||
- name: build
|
- name: build
|
||||||
run: |
|
run: |
|
||||||
uv sync
|
uv sync
|
||||||
|
|
18
.forgejo/workflows/test.yml
Normal file
18
.forgejo/workflows/test.yml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
# this workflow checks if the project can be built successfully.
|
||||||
|
# it also serves to test whether based-alpine and uv-cache are working properly.
|
||||||
|
# Unit tests will be added here eventually
|
||||||
|
on: [push]
|
||||||
|
jobs:
|
||||||
|
test-build:
|
||||||
|
runs-on: based-alpine
|
||||||
|
steps:
|
||||||
|
- name: checkout source
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: setup cache
|
||||||
|
id: uv-cache
|
||||||
|
uses: https://git.ficd.sh/ficd/uv-cache@v1
|
||||||
|
- name: sync and build
|
||||||
|
run: |
|
||||||
|
uv sync
|
||||||
|
uv build
|
||||||
|
uv run zona --version
|
4
.kakrc
4
.kakrc
|
@ -15,6 +15,10 @@ define-command readme %{
|
||||||
root-edit README.md
|
root-edit README.md
|
||||||
}
|
}
|
||||||
|
|
||||||
|
define-command kakrc %{
|
||||||
|
root-edit .kakrc
|
||||||
|
}
|
||||||
|
|
||||||
# change working directory to the package
|
# change working directory to the package
|
||||||
hook global -once BufCreate .* %{
|
hook global -once BufCreate .* %{
|
||||||
change-directory %exp{%opt{project_root}/src/zona}
|
change-directory %exp{%opt{project_root}/src/zona}
|
||||||
|
|
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -1,3 +1,14 @@
|
||||||
|
# 1.2.1
|
||||||
|
|
||||||
|
- Added `--version` flag to CLI.
|
||||||
|
|
||||||
|
# 1.2.0
|
||||||
|
|
||||||
|
- Improved the appearance and semantics of post navigation buttons.
|
||||||
|
- Navigation now follows "newer/older" logic.
|
||||||
|
- Added hover symbols to page titles.
|
||||||
|
- Improved the styling of hover symbols and links.
|
||||||
|
|
||||||
# 1.1.0
|
# 1.1.0
|
||||||
|
|
||||||
- Major improvements to default stylesheet.
|
- Major improvements to default stylesheet.
|
||||||
|
|
17
README.md
17
README.md
|
@ -101,10 +101,6 @@ If you don't want discovery, you can specify the project root as the first
|
||||||
argument to `zona build`. You may specify a path for the output using the
|
argument to `zona build`. You may specify a path for the output using the
|
||||||
`--output/-o` flag. The `--draft/-d` flag includes draft posts in the output.
|
`--output/-o` flag. The `--draft/-d` flag includes draft posts in the output.
|
||||||
|
|
||||||
_Note: the previous build is _not_ cleaned before the new site is built. If
|
|
||||||
you've deleted some pages, you may need to remove the output directory before
|
|
||||||
rebuilding._
|
|
||||||
|
|
||||||
### Live Preview
|
### Live Preview
|
||||||
|
|
||||||
To make the writing process as frictionless as possible, zona ships with a live
|
To make the writing process as frictionless as possible, zona ships with a live
|
||||||
|
@ -121,9 +117,10 @@ By default, the build outputs to a temporary directory. Use `-o/--output` to
|
||||||
override this.
|
override this.
|
||||||
|
|
||||||
**Note**: if the live preview isn't working as expected, try restarting the
|
**Note**: if the live preview isn't working as expected, try restarting the
|
||||||
server. If you change the configuration or any templates, the server must also
|
server. If you change the configuration, the server must also be restarted. The
|
||||||
be restarted. The live preview uses the same function as `zona build`
|
live preview uses the same function as `zona build` internally; this means that
|
||||||
internally; this means that the output is also written to disk.
|
the output is also written to disk --- a temporary directory by default, unless
|
||||||
|
overridden with `-o/--output`.
|
||||||
|
|
||||||
#### Live Reload
|
#### Live Reload
|
||||||
|
|
||||||
|
@ -197,12 +194,16 @@ option in its [frontmatter](#frontmatter). The following public variables are
|
||||||
made available to the template engine:
|
made available to the template engine:
|
||||||
|
|
||||||
| Name | Description |
|
| Name | Description |
|
||||||
| ---------- | ------------------------------------------------------ |
|
| ----------- | -------------------------------------------------------- |
|
||||||
| `content` | The content of this page. |
|
| `content` | The content of this page. |
|
||||||
| `url` | The resolved URL of this page. |
|
| `url` | The resolved URL of this page. |
|
||||||
| `metadata` | The frontmatter of this page (_merged with defaults_). |
|
| `metadata` | The frontmatter of this page (_merged with defaults_). |
|
||||||
| `header` | The sitemap header in HTML form. Can be `False`. |
|
| `header` | The sitemap header in HTML form. Can be `False`. |
|
||||||
| `footer` | The footer in HTML form. Can be `False`. |
|
| `footer` | The footer in HTML form. Can be `False`. |
|
||||||
|
| `is_post` | Whether this page is a post. |
|
||||||
|
| `newer` | URL of the newer post in the post list. |
|
||||||
|
| `older` | URL of the older post in the post list. |
|
||||||
|
| `post_list` | A sorted list of `Item` objects. Meant for internal use. |
|
||||||
|
|
||||||
#### Markdown Footer
|
#### Markdown Footer
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[project]
|
[project]
|
||||||
name = "zona"
|
name = "zona"
|
||||||
version = "1.1.0"
|
version = "1.2.1"
|
||||||
description = "Opinionated static site generator."
|
description = "Opinionated static site generator."
|
||||||
license = "BSD-3-Clause "
|
license = "BSD-3-Clause "
|
||||||
license-files = ["LICENSE"]
|
license-files = ["LICENSE"]
|
||||||
|
|
|
@ -123,6 +123,8 @@ class ZonaBuilder:
|
||||||
|
|
||||||
def _get_post_list(self) -> list[Item]:
|
def _get_post_list(self) -> list[Item]:
|
||||||
assert self.items
|
assert self.items
|
||||||
|
# sort according to date
|
||||||
|
# descending order
|
||||||
post_list: list[Item] = sorted(
|
post_list: list[Item] = sorted(
|
||||||
[item for item in self.items if item.post],
|
[item for item in self.items if item.post],
|
||||||
key=lambda item: item.metadata.date
|
key=lambda item: item.metadata.date
|
||||||
|
@ -130,17 +132,17 @@ class ZonaBuilder:
|
||||||
else date.min,
|
else date.min,
|
||||||
reverse=True,
|
reverse=True,
|
||||||
)
|
)
|
||||||
|
# number of posts
|
||||||
# generate RSS here
|
# generate RSS here
|
||||||
posts = len(post_list)
|
posts = len(post_list)
|
||||||
|
# link post chronology
|
||||||
for i, item in enumerate(post_list):
|
for i, item in enumerate(post_list):
|
||||||
prev = post_list[i - 1] if i > 0 else None
|
# prev: older post
|
||||||
next = post_list[i + 1] if i < posts - 2 else None
|
older = post_list[i + 1] if i + 1 < posts else None
|
||||||
item.previous = prev
|
# next: newer post
|
||||||
item.next = next
|
newer = post_list[i - 1] if i > 0 else None
|
||||||
return post_list
|
item.older = older
|
||||||
|
item.newer = newer
|
||||||
def _build(self):
|
|
||||||
post_list = self._get_post_list()
|
|
||||||
|
|
||||||
templater = Templater(
|
templater = Templater(
|
||||||
config=self.config,
|
config=self.config,
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
from importlib.metadata import version as __version__
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from typing import Annotated
|
from typing import Annotated
|
||||||
|
|
||||||
|
@ -134,8 +135,23 @@ def serve(
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def version_callback(value: bool):
|
||||||
|
if value:
|
||||||
|
print(f"Zona version: {__version__('zona')}")
|
||||||
|
raise typer.Exit()
|
||||||
|
|
||||||
|
|
||||||
@app.callback()
|
@app.callback()
|
||||||
def main_entry(
|
def main_entry(
|
||||||
|
version: Annotated[ # pyright: ignore[reportUnusedParameter]
|
||||||
|
bool | None,
|
||||||
|
typer.Option(
|
||||||
|
"--version",
|
||||||
|
callback=version_callback,
|
||||||
|
is_eager=True,
|
||||||
|
help="Print version info and exit.",
|
||||||
|
),
|
||||||
|
] = None,
|
||||||
verbosity: Annotated[
|
verbosity: Annotated[
|
||||||
str,
|
str,
|
||||||
typer.Option(
|
typer.Option(
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
:root {
|
:root {
|
||||||
|
--main-placeholder-color: #b14242;
|
||||||
--main-text-color: #b4b4b4;
|
--main-text-color: #b4b4b4;
|
||||||
--main-text-opaque-color: rgba(180, 180, 180, 0.8);
|
--main-text-opaque-color: rgba(180, 180, 180, 0.8);
|
||||||
--main-bg-color: #121212;
|
--main-bg-color: #121212;
|
||||||
|
@ -33,27 +34,101 @@ header {
|
||||||
|
|
||||||
.post-nav {
|
.post-nav {
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
|
font-size: 0.95em;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.post-nav .bar {
|
||||||
|
position: relative;
|
||||||
|
bottom: 0.05em;
|
||||||
|
display: inline-block;
|
||||||
|
width: 1px;
|
||||||
|
height: 0.8em;
|
||||||
|
background-color: currentColor;
|
||||||
|
vertical-align: middle;
|
||||||
|
margin: 0 0.3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.post-nav .placeholder {
|
||||||
|
color: var(--main-placeholder-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-nav .symbol {
|
.post-nav .symbol {
|
||||||
color: var(--main-bullet-color);
|
color: var(--main-bullet-color);
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
display: inline;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-nav a {
|
.site-logo.hover-symbol::before {
|
||||||
margin: 0 2px;
|
content: "~/";
|
||||||
}
|
}
|
||||||
|
|
||||||
.site-logo {
|
.title.hover-symbol::before {
|
||||||
|
content: "$";
|
||||||
|
}
|
||||||
|
|
||||||
|
.hover-symbol {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
|
position: relative;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
/* font-size: 1.75rem;*/
|
transition: color 0.15s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hover-symbol::before {
|
||||||
|
font-family: monospace;
|
||||||
|
content: "#";
|
||||||
|
position: absolute;
|
||||||
|
right: 100%;
|
||||||
|
margin-right: 0.25em;
|
||||||
|
top: 50%;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
opacity: 0;
|
||||||
|
transition: opacity 0.15s ease, color 0.15s ease;
|
||||||
|
color: var(--main-text-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.hover-symbol:hover::before {
|
||||||
|
opacity: 1;
|
||||||
|
color: var(--main-placeholder-color);
|
||||||
|
}
|
||||||
|
.hover-symbol:hover {
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.toc ul {
|
||||||
|
font-family: monospace;
|
||||||
|
text-transform: lowercase;
|
||||||
|
margin: auto;
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.toc ul ul {
|
||||||
|
padding-left: 1em;
|
||||||
|
margin-left: 1em;
|
||||||
|
/* list-style-type: "–– ";*/
|
||||||
|
}
|
||||||
|
.toc ul ul ul {
|
||||||
|
padding-left: 1em;
|
||||||
|
margin-left: 1em;
|
||||||
|
/* list-style-type: "-- ";*/
|
||||||
}
|
}
|
||||||
|
|
||||||
.toclink {
|
.toclink {
|
||||||
position: relative;
|
position: relative;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: inherit;
|
color: inherit;
|
||||||
|
transition: color 0.15s ease;
|
||||||
|
text-transform: lowercase;
|
||||||
|
font-family: monospace;
|
||||||
|
}
|
||||||
|
.post-list a {
|
||||||
|
position: relative;
|
||||||
|
text-decoration: none;
|
||||||
|
transition: color 0.15s ease;
|
||||||
|
text-transform: lowercase;
|
||||||
|
font-family: monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
.toclink::before {
|
.toclink::before {
|
||||||
|
@ -64,7 +139,16 @@ header {
|
||||||
top: 50%;
|
top: 50%;
|
||||||
transform: translateY(-50%);
|
transform: translateY(-50%);
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transition: opacity 0.2s ease;
|
transition: opacity 0.15s ease, color 0.15s ease;
|
||||||
|
color: var(--main-link-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.toclink:hover::before {
|
||||||
|
opacity: 1;
|
||||||
|
color: var(--main-placeholder-color);
|
||||||
|
}
|
||||||
|
.toclink:hover {
|
||||||
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 .toclink::before {
|
h1 .toclink::before {
|
||||||
|
@ -83,13 +167,6 @@ h4 .toclink::before {
|
||||||
content: "###";
|
content: "###";
|
||||||
}
|
}
|
||||||
|
|
||||||
.toclink:hover::before {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
.toclink:hover {
|
|
||||||
background-color: transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* h1, */
|
/* h1, */
|
||||||
h2,
|
h2,
|
||||||
h3,
|
h3,
|
||||||
|
@ -111,6 +188,11 @@ h1 {
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.title a {
|
||||||
|
color: inherit;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
article h1:first-of-type {
|
article h1:first-of-type {
|
||||||
margin-block-start: 1.67rem;
|
margin-block-start: 1.67rem;
|
||||||
}
|
}
|
||||||
|
@ -154,40 +236,55 @@ h6 {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*ul {*/
|
||||||
|
/* list-style-type: disc;*/
|
||||||
|
/*}*/
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
list-style-type: disc;
|
list-style-type: "– ";
|
||||||
/* or any other list style */
|
}
|
||||||
|
ul ul {
|
||||||
|
padding-left: 1em;
|
||||||
|
margin-left: 1em;
|
||||||
|
list-style-type: "+ ";
|
||||||
|
}
|
||||||
|
ul ul ul {
|
||||||
|
list-style-type: "~ ";
|
||||||
|
}
|
||||||
|
ul ul ul ul {
|
||||||
|
list-style-type: "• ";
|
||||||
|
}
|
||||||
|
ul ul ul ul ul {
|
||||||
|
list-style-type: "– ";
|
||||||
|
}
|
||||||
|
ul ul ul ul ul ul {
|
||||||
|
list-style-type: "+ ";
|
||||||
|
}
|
||||||
|
ul ul ul ul ul ul ul {
|
||||||
|
list-style-type: "~ ";
|
||||||
|
}
|
||||||
|
ul ul ul ul ul ul ul ul {
|
||||||
|
list-style-type: "• ";
|
||||||
}
|
}
|
||||||
|
|
||||||
li::marker {
|
li::marker {
|
||||||
color: var(--main-bullet-color);
|
color: var(--main-bullet-color);
|
||||||
/* Change this to your desired color */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: var(--main-link-color);
|
color: var(--main-link-color);
|
||||||
text-decoration: none;
|
text-decoration: underline;
|
||||||
position: relative;
|
text-decoration-color: rgba(0, 0, 0, 0);
|
||||||
|
text-underline-offset: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
a::after {
|
a {
|
||||||
content: "";
|
transition: color 0.15s ease, text-decoration-color 0.15s ease;
|
||||||
position: absolute;
|
|
||||||
left: 0;
|
|
||||||
bottom: -2px;
|
|
||||||
width: 100%;
|
|
||||||
height: 1px;
|
|
||||||
background-color: currentColor;
|
|
||||||
transform: scaleX(0);
|
|
||||||
transform-origin: center;
|
|
||||||
transition: transform 0.1s ease;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover::after {
|
a:hover {
|
||||||
transform: scaleX(1);
|
text-decoration-color: var(--main-placeholder-color);
|
||||||
}
|
color: var(--main-bullet-color);
|
||||||
a:has(> code)::after {
|
|
||||||
display: none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
|
@ -424,23 +521,3 @@ caption {
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
color: var(--main-small-text-color);
|
color: var(--main-small-text-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
a > code {
|
|
||||||
text-decoration: none;
|
|
||||||
color: var(--main-link-color);
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:has(> code) {
|
|
||||||
text-decoration: none;
|
|
||||||
background: none;
|
|
||||||
/* position: static;*/
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover > code {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover:has(> code) {
|
|
||||||
background: none;
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,13 +1,11 @@
|
||||||
{% extends "base.html" %} {% block content %}
|
{% extends "base.html" %} {% block content %} {% if metadata.show_title %} {%
|
||||||
|
include "title.html" %} {% endif %}
|
||||||
{% if metadata.show_title %}
|
|
||||||
{% include "title.html" %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
<article>{{ content | safe }}</article>
|
<article>{{ content | safe }}</article>
|
||||||
|
|
||||||
{% if post_list %}
|
{% if post_list %}
|
||||||
<ul>
|
<div class="post-list">
|
||||||
|
<ul>
|
||||||
{% for item in post_list %}
|
{% for item in post_list %}
|
||||||
<li>
|
<li>
|
||||||
<time class="post-list-date" datetime="{{ item.metadata.date | safe }}"
|
<time class="post-list-date" datetime="{{ item.metadata.date | safe }}"
|
||||||
|
@ -15,6 +13,6 @@
|
||||||
>{{ item.metadata.title }}</a>
|
>{{ item.metadata.title }}</a>
|
||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
|
</div>
|
||||||
{% endif %} {% endblock %}
|
{% endif %} {% endblock %}
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,11 @@
|
||||||
<div class="post-nav">
|
<div class="post-nav">
|
||||||
<center>
|
<center>
|
||||||
<span class="symbol"><</span>{% if previous %}<a
|
<span class="symbol"><</span>{% if newer %}<a href="{{ newer }}">newr</a>{%
|
||||||
href="{{ previous }}"
|
else %}<span class="placeholder">null</span>{% endif %}<span
|
||||||
>prev</a>{% endif %}{% if previous and next %}<span class="symbol"
|
class="symbol"
|
||||||
>|</span>{% endif %}{% if next %}<a href="{{ next }}">next</a>{% endif
|
><span class="bar"></span></span>{% if older %}<a href="{{ older }}"
|
||||||
%}<span class="symbol">></span>
|
>oldr</a>{% else %}<span class="placeholder">null</span>{% endif %}<span
|
||||||
|
class="symbol"
|
||||||
|
>></span>
|
||||||
</center>
|
</center>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
<center><h1 class="title">{{ metadata.title }}</h1></center>
|
<center><h1 class="title hover-symbol"><a id="" href="#">{{ metadata.title }}</a></h1></center>
|
||||||
|
|
||||||
|
|
|
@ -23,8 +23,8 @@ class Item:
|
||||||
type: ItemType | None = None
|
type: ItemType | None = None
|
||||||
copy: bool = True
|
copy: bool = True
|
||||||
post: bool = False
|
post: bool = False
|
||||||
next: Item | None = None
|
newer: Item | None = None
|
||||||
previous: Item | None = None
|
older: Item | None = None
|
||||||
|
|
||||||
|
|
||||||
# @dataclass
|
# @dataclass
|
||||||
|
|
|
@ -27,7 +27,6 @@ def get_footer(template_dir: Path) -> str | None:
|
||||||
return html_footer.read_text()
|
return html_footer.read_text()
|
||||||
|
|
||||||
|
|
||||||
# TODO: add next/prev post button logic to posts
|
|
||||||
# TODO: add a recent posts element that can be included elsewhere?
|
# TODO: add a recent posts element that can be included elsewhere?
|
||||||
class Templater:
|
class Templater:
|
||||||
def __init__(
|
def __init__(
|
||||||
|
@ -79,11 +78,11 @@ class Templater:
|
||||||
header=header,
|
header=header,
|
||||||
footer=footer,
|
footer=footer,
|
||||||
is_post=item.post,
|
is_post=item.post,
|
||||||
next=util.normalize_url(item.next.url)
|
newer=util.normalize_url(item.newer.url)
|
||||||
if item.next
|
if item.newer
|
||||||
else None,
|
else None,
|
||||||
previous=util.normalize_url(item.previous.url)
|
older=util.normalize_url(item.older.url)
|
||||||
if item.previous
|
if item.older
|
||||||
else None,
|
else None,
|
||||||
post_list=self.post_list,
|
post_list=self.post_list,
|
||||||
)
|
)
|
||||||
|
|
2
uv.lock
generated
2
uv.lock
generated
|
@ -509,7 +509,7 @@ wheels = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zona"
|
name = "zona"
|
||||||
version = "1.1.0"
|
version = "1.2.1"
|
||||||
source = { editable = "." }
|
source = { editable = "." }
|
||||||
dependencies = [
|
dependencies = [
|
||||||
{ name = "dacite" },
|
{ name = "dacite" },
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue