release: v0.9.33rc54

This commit is contained in:
Nick Sweeting 2026-05-31 01:49:12 -07:00
parent fe421fdb79
commit 4a43c02acb
No known key found for this signature in database
4 changed files with 6 additions and 2 deletions

View File

@ -31,6 +31,8 @@ SESSION_DATA_DIR = Path(
# Force ArchiveBox imports to see a temp DATA_DIR during test collection.
os.environ["ARCHIVEBOX_PYTEST_SESSION_DATA_DIR"] = str(SESSION_DATA_DIR)
os.environ["DATA_DIR"] = str(SESSION_DATA_DIR)
(SESSION_DATA_DIR / "tests").mkdir(parents=True, exist_ok=True)
os.chdir(SESSION_DATA_DIR)
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "archivebox.core.settings")
os.environ.pop("ARCHIVE_DIR", None)
os.environ.pop("USERS_DIR", None)

View File

@ -17,6 +17,8 @@ SESSION_DATA_DIR = Path(
os.environ["ARCHIVEBOX_PYTEST_SESSION_DATA_DIR"] = str(SESSION_DATA_DIR)
os.environ["DATA_DIR"] = str(SESSION_DATA_DIR)
(SESSION_DATA_DIR / "tests").mkdir(parents=True, exist_ok=True)
os.chdir(SESSION_DATA_DIR)
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "archivebox.core.settings")
os.environ.pop("ARCHIVE_DIR", None)
os.environ.pop("USERS_DIR", None)

View File

@ -1,6 +1,6 @@
{
"name": "archivebox",
"version": "0.9.33rc53",
"version": "0.9.33rc54",
"repository": "github:ArchiveBox/ArchiveBox",
"license": "MIT",
"dependencies": {

View File

@ -1,6 +1,6 @@
[project]
name = "archivebox"
version = "0.9.33rc53"
version = "0.9.33rc54"
requires-python = ">=3.13"
description = "Self-hosted internet archiving solution."
authors = [{name = "Nick Sweeting", email = "pyproject.toml@archivebox.io"}]