From ea62b3369e8cab3debd2f78cd5b7aadca8ef4ed8 Mon Sep 17 00:00:00 2001 From: Andrei Lapets Date: Thu, 26 Oct 2023 13:35:31 -0400 Subject: [PATCH] Update version, Read the Docs config, and build dependency version lock. --- .readthedocs.yaml | 6 +++++- pyproject.toml | 4 ++-- src/barriers/__init__.py | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index b730773..1adbb5a 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -7,9 +7,13 @@ formats: - pdf python: - version: "3.8" install: - method: pip path: . extra_requirements: - docs + +build: + os: "ubuntu-22.04" + tools: + python: "3.11" diff --git a/pyproject.toml b/pyproject.toml index fe9a263..d585b96 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "barriers" -version = "1.1.0" +version = "1.2.0" description = """\ Python decorators for including/excluding type checks, \ value/bounds checks, and other code blocks within the \ @@ -41,7 +41,7 @@ publish = [ [build-system] requires = [ - "setuptools~=67.6" + "setuptools>=67.6" ] build-backend = "setuptools.build_meta" diff --git a/src/barriers/__init__.py b/src/barriers/__init__.py index 87bf41f..9842cf6 100644 --- a/src/barriers/__init__.py +++ b/src/barriers/__init__.py @@ -1,2 +1,2 @@ -"""Gives users direct access to decorators/functions.""" +"""Allow users to access decorator/function directly.""" from barriers.barriers import barriers