Skip to content

Commit

Permalink
Deploying to gh-pages from @ 7877f74 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
ncoghlan committed Nov 12, 2024
1 parent 9e75274 commit 5d6d086
Show file tree
Hide file tree
Showing 86 changed files with 3,377 additions and 580 deletions.
2 changes: 1 addition & 1 deletion .buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file records the configuration used when building these files. When it is not found, a full rebuild will be done.
config: de7f721c757d20fd25f05899fb32b97e
config: 5de777e7786b9c0cdc82be54d483ddbc
tags: d77d1c0d9ca2f4c8421862c7c5a0d620
Binary file modified .doctrees/api/cli/index.doctree
Binary file not shown.
Binary file modified .doctrees/api/index.doctree
Binary file not shown.
Binary file modified .doctrees/api/pack_venv/index.doctree
Binary file not shown.
Binary file modified .doctrees/api/stacks/index.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified .doctrees/changelog.doctree
Binary file not shown.
Binary file modified .doctrees/design.doctree
Binary file not shown.
Binary file modified .doctrees/development/index.doctree
Binary file not shown.
Binary file modified .doctrees/environment.pickle
Binary file not shown.
Binary file added .doctrees/file-formats.doctree
Binary file not shown.
Binary file modified .doctrees/glossary.doctree
Binary file not shown.
Binary file modified .doctrees/index.doctree
Binary file not shown.
Binary file modified .doctrees/overview.doctree
Binary file not shown.
6 changes: 6 additions & 0 deletions _sources/api/cli/index.rst.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
venvstacks.cli
==============

.. meta::
:og:title: venvstacks.cli API - venvstacks Documentation
:og:type: website
:og:url: https://venvstacks.lmstudio.ai/api/cli/
:og:description: venvstacks.cli Python API - venvstacks Documentation

.. warning::

The Python API is *NOT YET STABLE*.
Expand Down
6 changes: 6 additions & 0 deletions _sources/api/index.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
Python API
----------

.. meta::
:og:title: venvstacks API - venvstacks Documentation
:og:type: website
:og:url: https://venvstacks.lmstudio.ai/api/
:og:description: venvstacks Python API - venvstacks Documentation

.. warning::

The Python API is *NOT YET STABLE*.
Expand Down
6 changes: 6 additions & 0 deletions _sources/api/pack_venv/index.rst.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
venvstacks.pack\_venv
=====================

.. meta::
:og:title: venvstacks.pack_venv API - venvstacks Documentation
:og:type: website
:og:url: https://venvstacks.lmstudio.ai/api/pack_venv/
:og:description: venvstacks.pack_venv Python API - venvstacks Documentation

.. warning::

The Python API is *NOT YET STABLE*.
Expand Down
18 changes: 18 additions & 0 deletions _sources/api/stacks/index.rst.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
venvstacks.stacks
=================

.. meta::
:og:title: venvstacks.stacks API - venvstacks Documentation
:og:type: website
:og:url: https://venvstacks.lmstudio.ai/api/stacks/
:og:description: venvstacks.stacks Python API - venvstacks Documentation

.. TODO: Replace the autosummary tables with:
* inline docs for the high level interface and the exceptions
* a stacks/metadata-details/ page
* a stacks/archive-publication/ page
* a stacks/local-exports/ page
* a stacks/layer-specifications/ page
* a stacks/layer-build-environments/ page
* a stacks/build-configuration/ page
Dedicated pages correspond to the sections below (except as noted).
Page names contain hyphens to ensure they're not valid submodule names.
.. warning::

The Python API is *NOT YET STABLE*.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Fixed
-----

- Post-installation scripts for layered environments now work
correctly even when run with a Python installation other
than the expected base runtime (resolved in :issue:`66`)

Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Added
-----

- Setting ``versioned = True`` in a layer definition will append a
lock version number to the layer name that automatically increments
each time the locked requirements change for that layer (``layer@1``,
``layer@2``, etc). Layer dependency declarations and build environments,
use the unversioned name, but deployed environments and their metadata
will use the versioned name (implemented in :issue:`24`).
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Changed
-------

- Renamed :class:`!EnvironmentExportRequest` to :class:`LayerExportRequest` (part of :issue:`33`).
- Exposed :class:`LayerSpecBase`, :class:`LayeredSpecBase` as public classes (part of :issue:`33`).
- Exposed :class:`LayerEnvBase`, :class:`LayeredEnvBase` as public classes (part of :issue:`33`).
- Added leading underscores to several private functions and methods (part of :issue:`33`).
- Added docstrings to all remaining public functions and methods (part of :issue:`33`).
- Enabled rendered previews for documentation PRs (requested in :issue:`43`).
- Enabled link validity checks when rendering documentation (requested in :issue:`62`).

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Added
-----

- Added documentation for the :ref:`stack-specification-format`.

30 changes: 30 additions & 0 deletions _sources/changelog.rst.txt
Original file line number Diff line number Diff line change
@@ -1 +1,31 @@
.. _changelog:

---------
Changelog
---------

.. meta::
:og:title: venvstacks Changelog - venvstacks Documentation
:og:type: website
:og:url: https://venvstacks.lmstudio.ai/changelog/
:og:description: venvstacks Changelog - venvstacks Documentation

.. note::

Until the Python API has stabilised, ``venvstacks`` is using
`ZeroVer <https://0ver.org/>`__ (starting from 0.1.0).

Refer to :ref:`version-numbering` for additional details
on the way releases are versioned.

.. Syntax check the changelog fragments
.. toctree::
:hidden:
:glob:

changelog.d/*

.. Include the scriv-generated changelog details
.. include:: ../CHANGELOG.rst
6 changes: 6 additions & 0 deletions _sources/design.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
Design Discussion
-----------------

.. meta::
:og:title: venvstacks Design - venvstacks Documentation
:og:type: website
:og:url: https://venvstacks.lmstudio.ai/design/
:og:description: venvstacks Design Discussion - venvstacks Documentation

Project
=======

Expand Down
10 changes: 8 additions & 2 deletions _sources/development/index.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
Development
-----------

.. meta::
:og:title: venvstacks Development - venvstacks Documentation
:og:type: website
:og:url: https://venvstacks.lmstudio.ai/development/
:og:description: venvstacks Developer Guide - venvstacks Documentation


Getting Started
===============
Expand All @@ -12,7 +18,8 @@ Getting Started

This document aims to get you setup to work on venvstacks and to act as a guide
and reference to the development setup. If you face any issues during this
process, please `open an issue`_ about it on the issue tracker.
process, please :issue:`open an issue <new?title=Trouble+with+development+environment>`
about it on the issue tracker.


Get the source code
Expand Down Expand Up @@ -279,7 +286,6 @@ After release:
* Bump the version in ``pyproject.toml`` and add a ``.dev0`` suffix

.. _`Getting Started`: https://pip.pypa.io/en/stable/development/getting-started/
.. _`open an issue`: https://github.com/lmstudio-ai/venvstacks/issues/new?title=Trouble+with+development+environment
.. _`rich CLI`: https://docs.pytest.org/en/stable/how-to/usage.html#specifying-which-tests-to-run
.. _`GitHub`: https://github.com/lmstudio-ai/venvstacks
.. _`testing README file`: https://github.com/lmstudio-ai/venvstacks/blob/main/tests/README.md
Expand Down
Loading

0 comments on commit 5d6d086

Please sign in to comment.