Skip to content

Commit

Permalink
Fix Sphinx
Browse files Browse the repository at this point in the history
  • Loading branch information
georg-wolflein committed Oct 30, 2023
1 parent 3803d6c commit 0929863
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "recap"
version = "0.1.7"
version = "0.1.8"
description = "Reproducible configurations for any project"
authors = ["Georg Wölflein <[email protected]>"]
license = "Apache-2.0"
Expand All @@ -23,7 +23,7 @@ include = [
]

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.9"
yacs = "^0.1.8"
wrapt = "^1.12.1"
pyyaml = "^6.0.1"
Expand Down
2 changes: 1 addition & 1 deletion recap/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""The recap package. The most important classes, :class:`~recap.config.CfgNode` and :class:`~recap.path_manager.URI` are available as top-level exports.
"""

__version__ = "0.1.7"
__version__ = "0.1.8"

from .config import CfgNode
from .path_manager import URI

0 comments on commit 0929863

Please sign in to comment.