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/civicaccess/security/policy
url: https://github.com/townlight/access/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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Persistence-write routes require the trusted-write token (constant-time compare,
```powershell
python -m venv .venv
.\.venv\Scripts\Activate.ps1
python -m pip install https://github.com/CivicSuite/civiccore/releases/download/v1.2.0/civiccore-1.2.0-py3-none-any.whl
python -m pip install https://github.com/townlight/core/releases/download/v1.2.0/civiccore-1.2.0-py3-none-any.whl
python -m pip install -e ".[dev]"
python -m pytest -q
# Full release gate (requires a real PostgreSQL):
Expand Down
2 changes: 1 addition & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Security:
Developer quickstart:
python -m venv .venv
.\.venv\Scripts\Activate.ps1
python -m pip install https://github.com/CivicSuite/civiccore/releases/download/v1.2.0/civiccore-1.2.0-py3-none-any.whl
python -m pip install https://github.com/townlight/core/releases/download/v1.2.0/civiccore-1.2.0-py3-none-any.whl
python -m pip install -e ".[dev]"
python -m pytest -q
# Full release gate (requires a real PostgreSQL):
Expand Down
2 changes: 1 addition & 1 deletion USER-MANUAL.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ Readiness: poll `GET /ready` (or `/api/v1/civicaccess/readiness`) — `ready` wh
Local verification (mirrors CI; the release gate requires a real PostgreSQL):

```bash
python -m pip install https://github.com/CivicSuite/civiccore/releases/download/v1.2.0/civiccore-1.2.0-py3-none-any.whl
python -m pip install https://github.com/townlight/core/releases/download/v1.2.0/civiccore-1.2.0-py3-none-any.whl
python -m pip install -e ".[dev]"
# Release gate (requires Postgres):
export CIVICACCESS_POSTGRES_TEST_URL="postgresql+psycopg2://USER:PW@HOST:PORT/DB"
Expand Down
2 changes: 1 addition & 1 deletion USER-MANUAL.txt
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ Operations
Readiness: poll GET /ready (or /api/v1/civicaccess/readiness) - ready when the schema
can be created and verified. Local verification (the release gate requires a real
PostgreSQL):
python -m pip install https://github.com/CivicSuite/civiccore/releases/download/v1.2.0/civiccore-1.2.0-py3-none-any.whl
python -m pip install https://github.com/townlight/core/releases/download/v1.2.0/civiccore-1.2.0-py3-none-any.whl
python -m pip install -e ".[dev]"
export CIVICACCESS_POSTGRES_TEST_URL="postgresql+psycopg2://USER:PW@HOST:PORT/DB"
bash scripts/verify-release.sh
Expand Down
2 changes: 1 addition & 1 deletion docs/github-discussions-seed.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ City-core hardening (closes probe gaps #2/#3/#4):
### Running it locally & the release gate

```bash
python -m pip install https://github.com/CivicSuite/civiccore/releases/download/v1.2.0/civiccore-1.2.0-py3-none-any.whl
python -m pip install https://github.com/townlight/core/releases/download/v1.2.0/civiccore-1.2.0-py3-none-any.whl
python -m pip install -e ".[dev]"
python -m pytest -q
# Full release gate requires a real PostgreSQL:
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",
"psycopg2-binary>=2.9.0,<3.0.0",
"sqlalchemy>=2.0.0,<3.0.0",
Expand All @@ -31,7 +31,7 @@ dev = [
"build>=1.2.0,<2.0.0",
"httpx>=0.27.0,<1.0.0",
"pytest>=8.0.0,<9.0.0",
"ruff>=0.11.0",
"ruff==0.15.21",
]

[tool.pytest.ini_options]
Expand Down
2 changes: 1 addition & 1 deletion tests/test_runtime_foundation.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def test_pyproject_uses_published_civiccore_release_wheel() -> None:

assert data["tool"]["hatch"]["metadata"]["allow-direct-references"] is True
assert (
"civiccore @ https://github.com/CivicSuite/civiccore/releases/download/"
"civiccore @ https://github.com/townlight/core/releases/download/"
"v1.2.0/civiccore-1.2.0-py3-none-any.whl#sha256=a94ce958e36fb03c8d961e4db4672ce5bcfa25765c57d75886e999cf15703ec7"
) in dependencies
assert "civiccore==1.1.0" not in dependencies
Expand Down