Skip to content

Commit 922cede

Browse files
version 0.35.0 changelog
1 parent ccaf078 commit 922cede

File tree

2 files changed

+23
-9
lines changed

2 files changed

+23
-9
lines changed

docs/source/about/changelog.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1373,3 +1373,16 @@ SNAP API
13731373
GAMMA API
13741374
---------
13751375
- handle subprocess signal kills like segmentation fault (SIGSEGV). Before these were just passed through, now a `RuntimeError` is raised.
1376+
1377+
0.35.0 | 2026-03-09
1378+
===================
1379+
1380+
Archive
1381+
-------
1382+
- new module :mod:`pyroSAR.archive` extracted from :mod:`pyroSAR.drivers`
1383+
- new protocol class :class:`pyroSAR.archive.SceneArchive` to establish an interface for scene search classes (inherited by :class:`pyroSAR.archive.Archive`).
1384+
- method `Archive.encode` has been renamed to :meth:`~pyroSAR.archive.Archive.to_str` and has been reimplemented to be more predictable
1385+
1386+
Drivers
1387+
-------
1388+
- :class:`~pyroSAR.drivers.ID`: deleted method `export2sqlite`

docs/source/conf.py

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,15 @@
4545
# autodoc_default_flags = ['members']
4646
autosummary_generate = []
4747

48-
intersphinx_mapping = {'osgeo': ('https://gdal.org', None),
49-
'python': ('https://docs.python.org/3', None),
50-
'requests': ('https://requests.readthedocs.io/en/latest', None),
51-
'scipy': ('https://docs.scipy.org/doc/scipy', None),
52-
'spatialist': ('https://spatialist.readthedocs.io/en/latest', None),
53-
'sqlalchemy': ('https://docs.sqlalchemy.org/en/latest', None),
54-
'sqlalchemy-utils': ('https://sqlalchemy-utils.readthedocs.io/en/latest', None)
55-
}
48+
intersphinx_mapping = {
49+
'osgeo': ('https://gdal.org', None),
50+
'python': ('https://docs.python.org/3', None),
51+
'requests': ('https://requests.readthedocs.io/en/latest', None),
52+
'scipy': ('https://docs.scipy.org/doc/scipy', None),
53+
'spatialist': ('https://spatialist.readthedocs.io/en/latest', None),
54+
'sqlalchemy': ('https://docs.sqlalchemy.org/en/latest', None),
55+
'sqlalchemy-utils': ('https://sqlalchemy-utils.readthedocs.io/en/latest', None)
56+
}
5657

5758
napoleon_google_docstring = False
5859
napoleon_numpy_docstring = True
@@ -124,7 +125,7 @@
124125

125126
# The theme to use for HTML and HTML Help pages. See the documentation for
126127
# a list of builtin themes.
127-
html_theme = 'default'
128+
html_theme = 'sphinx_rtd_theme'
128129

129130
# Theme options are theme-specific and customize the look and feel of a theme
130131
# further. For a list of options available for each theme, see the

0 commit comments

Comments
 (0)