You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Move test, bench, and doc requirements out of pyproject.toml (#1407)
* chore: whitespace and copyright year update
* chore: cleanup github templates
* chore: move test and docs deps out of pyproject.toml
This makes them easier to:
- Freeze (using `uv pip compile`)
- Avoid building in the case where all optional dependencies are enabled
* chore: update changelog
* fix: ceil codespell
* fix(ci): some leftover test extras
* fix(ci): one more
* Update docs/contributing.rst
Co-authored-by: Julia Signell <[email protected]>
---------
Co-authored-by: Julia Signell <[email protected]>
Copy file name to clipboardexpand all lines: .github/pull_request_template.md
+1-2
Original file line number
Diff line number
Diff line change
@@ -6,8 +6,7 @@
6
6
7
7
**PR Checklist:**
8
8
9
-
-[ ]`pre-commit` hooks pass locally
10
-
-[ ] Tests pass (run `scripts/test`)
9
+
-[ ] Pre-commit hooks and tests pass (run `scripts/test`)
11
10
-[ ] Documentation has been updated to reflect changes, if applicable
12
11
-[ ] This PR maintains or improves overall codebase code coverage.
13
12
-[ ] Changes are added to the [CHANGELOG](https://github.com/stac-utils/pystac/blob/main/CHANGELOG.md). See [the docs](https://pystac.readthedocs.io/en/latest/contributing.html#changelog) for information about adding to the changelog.
Copy file name to clipboardexpand all lines: CHANGELOG.md
+2-1
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,7 @@
14
14
- Update docstring of `name` argument to `Classification.apply` and `Classification.create` to agree with extension specification ([#1356](https://github.com/stac-utils/pystac/pull/1356))
15
15
- Add example of custom `StacIO` for Azure Blob Storage to docs ([#1372](https://github.com/stac-utils/pystac/pull/1372))
16
16
- Noted that collection links can be used in non-item objects in STAC v1.1.0 ([#1393](https://github.com/stac-utils/pystac/pull/1393))
17
+
- Move test, docs, and bench requirements out of pyproject.toml ([#1407](https://github.com/stac-utils/pystac/pull/1407))
17
18
18
19
### Fixed
19
20
@@ -672,7 +673,7 @@
672
673
673
674
- Fixed issue that can cause infinite recursion during full resolve ([#204](https://github.com/stac-utils/pystac/pull/193))
674
675
- Fixed issue that required label_classes in label items ([#201](https://github.com/stac-utils/pystac/pull/201))
675
-
- Fixed issue that caused geometries and bboxes produced by Shapely to fail PySTAC's validaton ([#201](https://github.com/stac-utils/pystac/pull/201))
676
+
- Fixed issue that caused geometries and bboxes produced by Shapely to fail PySTAC's validator ([#201](https://github.com/stac-utils/pystac/pull/201))
676
677
- Allow for path prefixes like /vsitar/ ([#208](https://github.com/stac-utils/pystac/pull/208))
677
678
- Fix Item set_self_href to ensure item asset locations do not break ([#226](https://github.com/stac-utils/pystac/pull/226))
678
679
- Fixed an incorrect exception being thrown from Link.get_href() if there is no target_href ([#201](https://github.com/stac-utils/pystac/pull/201))
Copy file name to clipboardexpand all lines: CODE_OF_CONDUCT.md
+1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
# PySTAC Community Code of Conduct
2
2
3
3
## Our Pledge
4
+
4
5
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
0 commit comments