Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
blank_issues_enabled: true
contact_links:
- name: Security reports
url: https://github.com/CivicSuite/civicnotice/security/policy
url: https://github.com/townlight/notice/security/policy
about: Report vulnerabilities privately.
2 changes: 1 addition & 1 deletion .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
with:
python-version: "3.11"
- name: Install CivicCore release wheel
run: python -m pip install https://github.com/CivicSuite/civiccore/releases/download/v1.2.0/civiccore-1.2.0-py3-none-any.whl
run: python -m pip install https://github.com/townlight/core/releases/download/v1.2.0/civiccore-1.2.0-py3-none-any.whl
- name: Install package
run: python -m pip install -e ".[dev]"
- name: Assert CivicCore release version
Expand Down
2 changes: 1 addition & 1 deletion docs/browser-qa-summary.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ Checked at: 2026-04-27T22:25:26.910Z
| runtime desktop | 1440x1000 | 0 | no | yes | yes | docs/browser-qa-civicnotice-desktop.png |
| runtime mobile | 390x900 | 0 | no | yes | yes | docs/browser-qa-civicnotice-mobile.png |

Repository URL verified in docs/index.html: https://github.com/CivicSuite/civicnotice
Repository URL verified in docs/index.html: https://github.com/townlight/notice
Runtime UI verified at http://127.0.0.1:8134/civicnotice.
Current-facing copy does not claim legal sufficiency, official publication, legal advice, live LLM calls, publication-system write-back, or notice system-of-record authority.
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ <h1>Public notices with fewer missed deadlines.</h1>
<section class="grid">
<article class="card"><h2>What ships</h2><ul><li>Sample notice registry.</li><li>Statutory deadline plans.</li><li>Statutory rule checks.</li><li>Notice drafting templates.</li><li>Accessibility and language-readiness packets.</li><li>Optional persistence with <code>CIVICNOTICE_WORKPAPER_DB_URL</code>, including publication-proof workpapers.</li><li>Publication-readiness checklists.</li><li>Channel planning flags.</li><li>Subscriber delivery planning.</li><li>Archive/handoff packets.</li><li>Notice and records export checklist.</li><li>Public sample UI at <code>/civicnotice</code>.</li></ul></article>
<article class="card"><h2>What does not ship</h2><p>CivicNotice does not decide legal sufficiency, publish official notices, provide legal advice, call live LLMs, write back to publication systems, or replace a notice system of record.</p></article>
<article class="card"><h2>Repository</h2><p><a href="https://github.com/CivicSuite/civicnotice">github.com/CivicSuite/civicnotice</a></p></article>
<article class="card"><h2>Repository</h2><p><a href="https://github.com/townlight/notice">github.com/townlight/notice</a></p></article>
<article class="card"><h2>Documentation</h2><ul><li><a href="../README.md">README</a></li><li><a href="../USER-MANUAL.md">User manual</a></li><li><a href="../SECURITY.md">Security</a></li><li><a href="../CHANGELOG.md">Changelog</a></li><li><a href="/docs">Interactive API docs</a></li><li><a href="/openapi.json">OpenAPI schema</a></li><li><a href="IMPLEMENTATION_PLAN.md">Implementation plan</a></li><li><a href="RECONCILIATION.md">Reconciliation</a></li><li><a href="MILESTONES.md">Milestones</a></li></ul></article>
<article class="card"><h2>Dependency</h2><p>Pinned to the <code>civiccore v1.2.0</code> release wheel. CivicCore now supplies the shared deadline-plan helper; it still never imports from CivicNotice.</p></article>
</section>
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ authors = [
{ name = "CivicSuite contributors" }
]
dependencies = [
"civiccore @ https://github.com/CivicSuite/civiccore/releases/download/v1.2.0/civiccore-1.2.0-py3-none-any.whl#sha256=a94ce958e36fb03c8d961e4db4672ce5bcfa25765c57d75886e999cf15703ec7",
"civiccore @ https://github.com/townlight/core/releases/download/v1.2.0/civiccore-1.2.0-py3-none-any.whl#sha256=a94ce958e36fb03c8d961e4db4672ce5bcfa25765c57d75886e999cf15703ec7",
"fastapi>=0.115.0,<1.0.0",
"sqlalchemy>=2.0.0,<3.0.0",
"uvicorn[standard]>=0.30.0,<1.0.0",
Expand All @@ -29,7 +29,7 @@ dev = [
"psycopg2-binary>=2.9.0,<3.0.0",
"pytest>=8.0.0,<9.0.0",
"pytest-cov>=5.0.0,<7.0.0",
"ruff>=0.11.0",
"ruff==0.15.21",
]

[tool.pytest.ini_options]
Expand Down
2 changes: 1 addition & 1 deletion scripts/verify-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -euo pipefail

VERSION="0.2.0"
CIVICCORE_WHEEL_URL="https://github.com/CivicSuite/civiccore/releases/download/v1.2.0/civiccore-1.2.0-py3-none-any.whl"
CIVICCORE_WHEEL_URL="https://github.com/townlight/core/releases/download/v1.2.0/civiccore-1.2.0-py3-none-any.whl"
CIVICCORE_WHEEL_SHA256="a94ce958e36fb03c8d961e4db4672ce5bcfa25765c57d75886e999cf15703ec7"

find_python() {
Expand Down