Skip to content

Commit b032836

Browse files
committed
Merge branch 'main' into 1.0
2 parents a8896ff + b283955 commit b032836

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+3476
-1667
lines changed

.readthedocs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ version: 2
77
formats:
88
# Temporarily disabling PDF downloads due to problem with nbsphinx in LateX builds
99
# - pdf
10-
- epub
10+
- htmlzip
1111

1212
python:
13-
version: "3.7"
13+
version: "3.8"
1414
install:
1515
- requirements: requirements-docs.txt
1616
- method: pip

CHANGELOG.md

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,34 @@
1212

1313
### Deprecated
1414

15+
## [v1.3.0]
16+
17+
### Added
18+
19+
- Type annotations for instance attributes on all classes ([#705](https://github.com/stac-utils/pystac/pull/705))
20+
- `extensions.datacube.Variable.to_dict` method ([#699](https://github.com/stac-utils/pystac/pull/699)])
21+
- Clarification of possible errors when using `.ext` to extend an object ([#701](https://github.com/stac-utils/pystac/pull/701))
22+
- Downloadable documentation as zipped HTML ([#715](https://github.com/stac-utils/pystac/pull/715))
23+
24+
### Removed
25+
26+
- Downloadable documentation in ePub format ([#715](https://github.com/stac-utils/pystac/pull/715))
27+
28+
### Changed
29+
30+
- Reorganize docs and switch to PyData theme ([#687](https://github.com/stac-utils/pystac/pull/687))
31+
32+
### Fixed
33+
34+
- Quickstart tutorial is now up-to-date with all package changes ([#674](https://github.com/stac-utils/pystac/pull/674))
35+
- Creating absolute URLs from absolute URLs ([#697](https://github.com/stac-utils/pystac/pull/697)])
36+
- Serialization error when using `pystac.extensions.file.MappingObject` ([#700](https://github.com/stac-utils/pystac/pull/700))
37+
- Use `PropertiesExtension._get_property` to properly set return type in `TableExtension` ([#712](https://github.com/stac-utils/pystac/pull/712))
38+
- `DatacubeExtension.variables` now has a setter ([#699](https://github.com/stac-utils/pystac/pull/699)])
39+
- Landsat STAC tutorial is now up-to-date with all package changes ([#692](https://github.com/stac-utils/pystac/pull/674))
40+
- Paths to sub-catalog files when using `Catalog.save` ([#714](https://github.com/stac-utils/pystac/pull/714))
41+
- Link to PySTAC Introduction tutorial in tutorials index page ([#719](https://github.com/stac-utils/pystac/pull/719))
42+
1543
## [v1.2.0]
1644

1745
### Added
@@ -525,7 +553,8 @@ use `Band.create`
525553

526554
Initial release.
527555

528-
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.2.0..main>
556+
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.3.0..main>
557+
[v1.3.0]: <https://github.com/stac-utils/pystac/compare/v1.2.0..v1.3.0>
529558
[v1.2.0]: <https://github.com/stac-utils/pystac/compare/v1.1.0..v1.2.0>
530559
[v1.1.0]: <https://github.com/stac-utils/pystac/compare/v1.0.1..v1.1.0>
531560
[v1.0.1]: <https://github.com/stac-utils/pystac/compare/v1.0.0..v1.0.1>

docs/_static/STAC-03.png

116 KB
Loading

docs/_static/custom.css

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
.no-sidebar {
2+
display: none;
3+
}
4+
5+
.card-text a {
6+
font-weight: 600;
7+
color: rgb(255, 26, 26);
8+
}
9+
10+
.card-header p {
11+
font-size: large;
12+
font-weight: 600;
13+
}
14+
15+
.navbar-brand img {
16+
height: 50px;
17+
}
18+
19+
.navbar-brand {
20+
height: 75px;
21+
}

docs/_templates/layout.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{% extends "pydata_sphinx_theme/layout.html" %}
2+
3+
{% block docs_main %}
4+
{% if sidebars %}
5+
{% set content_col_class = "col-md-9 col-xl-7" %}
6+
{% else %}
7+
{# This customization to the no-sidebars case is why we override docs_main #}
8+
{% set content_col_class = "col-md-12" %}
9+
{% endif %}
10+
<main class="col-12 {{ content_col_class }} py-md-5 pl-md-5 pr-md-4 bd-content" role="main">
11+
{% block docs_body %}
12+
<div>
13+
{% block body %} {% endblock %}
14+
</div>
15+
{% endblock %}
16+
{% if theme_show_prev_next %}
17+
{% include "prev-next.html" %}
18+
{% endif %}
19+
</main>
20+
{% endblock %}

0 commit comments

Comments
 (0)