From 89e08a1cb1c48a9f6db5ea5be7ed17f0602b3538 Mon Sep 17 00:00:00 2001 From: Daniela Rus Morales <157103+danirus@users.noreply.github.com> Date: Fri, 1 Sep 2023 16:01:08 +0200 Subject: [PATCH] Prepare rel 0.1.2 (#1) --- Makefile | 1 + package.json | 2 +- pyproject.toml | 8 ++++++-- requirements.txt | 2 +- sphinx_nefertiti/__init__.py | 2 +- 5 files changed, 10 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 64baf4e..9b2727b 100644 --- a/Makefile +++ b/Makefile @@ -14,6 +14,7 @@ clean: ## Clean up built files. build-ext: ## Build Sphinx extension. npm run build + mkdir -p sphinx_nefertiti/colorsets/ cp site/css/bootstrap-icons.css sphinx_nefertiti/static/ cp site/css/bootstrap-icons.woff2 sphinx_nefertiti/static/ cp site/js/*.min.js sphinx_nefertiti/static/ diff --git a/package.json b/package.json index 3631b22..393e05d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sphinx-nefertiti", - "version": "0.1.1", + "version": "0.1.2", "private": true, "description": "Private repository related with sphinx-nefertiti.", "engines": { diff --git a/pyproject.toml b/pyproject.toml index b101aeb..c685ff0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,8 +4,12 @@ build-backend = "hatchling.build" [project] name = "sphinx-nefertiti" -description = "The theme Nefertiti for Sphinx" -requires-python = ">3.7" +description = "The Nefertiti for Sphinx theme" +readme = "README.md" +requires-python = ">=3.8" +dependencies = [ + "sphinx >= 6,<8" +] authors = [ { name = "Daniela Rus Morales", email = "danirus@eml.cc" }, ] diff --git a/requirements.txt b/requirements.txt index d98985b..43b7706 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -sphinx>=5,<8 +sphinx>=6,<8 diff --git a/sphinx_nefertiti/__init__.py b/sphinx_nefertiti/__init__.py index 6bd2860..a5b11a4 100644 --- a/sphinx_nefertiti/__init__.py +++ b/sphinx_nefertiti/__init__.py @@ -6,7 +6,7 @@ from sphinx_nefertiti import colorsets, fonts, pygments -__version__ = "0.1.1" +__version__ = "0.1.2" __version_full__ = __version__