Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: bump the safe-dependencies group with 2 updates #95

Merged
merged 1 commit into from
Jul 8, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 1, 2024

Updates the requirements on pyogrio and pdoc3 to permit the latest version.
Updates pyogrio to 0.9.0

Release notes

Sourced from pyogrio's releases.

Version 0.9.0

Improvements

  • Add on_invalid parameter to read_dataframe (#422).

Bug fixes

  • Fixed bug transposing longitude and latitude when writing files with coordinate transformation from EPSG:4326 (#421).
  • Fix bug preventing reading from file paths containing hashes in read_dataframe (#412).

Packaging

  • MacOS wheels are now only available for macOS 12+. For older unsupported macOS versions, pyogrio can still be built from source (requires GDAL to be installed) (#417).
  • Remove usage of deprecated distutils in setup.py (#416).
Changelog

Sourced from pyogrio's changelog.

0.9.0 (2024-06-17)

Improvements

  • Add on_invalid parameter to read_dataframe (#422).

Bug fixes

  • Fixed bug transposing longitude and latitude when writing files with coordinate transformation from EPSG:4326 (#421).
  • Fix bug preventing reading from file paths containing hashes in read_dataframe (#412).

Packaging

  • MacOS wheels are now only available for macOS 12+. For older unsupported macOS versions, pyogrio can still be built from source (requires GDAL to be installed) (#417).
  • Remove usage of deprecated distutils in setup.py (#416).

0.8.0 (2024-05-06)

Improvements

  • Support for writing based on Arrow as the transfer mechanism of the data from Python to GDAL (requires GDAL >= 3.8). This is provided through the new pyogrio.raw.write_arrow function, or by using the use_arrow=True option in pyogrio.write_dataframe (#314, #346).
  • Add support for fids filter to read_arrow and open_arrow, and to read_dataframe with use_arrow=True (#304).
  • Add some missing properties to read_info, including layer name, geometry name and FID column name (#365).
  • read_arrow and open_arrow now provide GeoArrow-compliant extension metadata, including the CRS, when using GDAL 3.8 or higher (#366).
  • The open_arrow function can now be used without a pyarrow dependency. By default, it will now return a stream object implementing the Arrow PyCapsule Protocol (i.e. having an __arrow_c_stream__method). This object can then be consumed by your Arrow implementation of choice that supports this protocol. To keep the previous behaviour of returning a pyarrow.RecordBatchReader, specify use_pyarrow=True (#349).
  • Warn when reading from a multilayer file without specifying a layer (#362).
  • Allow writing to a new in-memory datasource using io.BytesIO object (#397).

Bug fixes

  • Fix error in write_dataframe if input has a date column and non-consecutive index values (#325).
  • Fix encoding issues on windows for some formats (e.g. ".csv") and always write ESRI Shapefiles using UTF-8 by default on all platforms (#361).
  • Raise exception in read_arrow or read_dataframe(..., use_arrow=True) if

... (truncated)

Commits
  • 568f870 RLS: v0.9.0
  • 8df6058 RLS: Update changelog for 0.9.0 release (#428)
  • 0193d10 ENH: add on_invalid parameter to read_dataframe (#422)
  • 8c32c02 Bump pypa/cibuildwheel from 2.18.1 to 2.19.1 (#425)
  • 8f6e75d Bump docker/build-push-action from 5 to 6 (#426)
  • a9b26d3 BUG: fix write of kml lon/lat transpose (#421)
  • ef71cee Remove direct usage of distutils from setup.py (#418)
  • 16bf4c2 BLD/RLS: Bump MacOS wheels to MacOS 11 (+ bump cibuildwheel from 2.17.0 to 2....
  • ffea442 BUG: Fix hash url parsing (#412)
  • 46c35a7 RLS: v0.8.0
  • Additional commits viewable in compare view

Updates pdoc3 to 0.11.1

Changelog

Sourced from pdoc3's changelog.

0.11.1 (2024-06-26)

  • Handle union type expressions (|) for Google style docstrings (#443)
  • Fix bug with Lunr.js search when node in not available (#446)

0.11.0 (2024-06-22)

  • Handle import of distutils on Python 3.12
  • Discern properties from regular variables (#277)
  • Prebuild Lunr.js search index if Node is available.
  • Templates: Update CDN resource links
  • Support MathJax inline $dollar-pattern$
  • Fix documenting classes that contain unittest.mock.Mock (#352)
  • Strengthen signature detection for pybind-generated modules
  • Bump pandoc integration to v3
  • Support Google Analytics 4
  • Fix deprecation warnings for PEP224 docstrings of class variables (#437)
  • Skip __editable__ paths during iter_modules (#408)
  • Various bug fixes and tweaks

0.10.0 (2021-08-03)

  • Python 3.6+ required.
  • New support for variable doc-comments (directly above variable definition or on the same line; starting with '#:').
  • Improved formatting of typing annotations.
  • Respect PYTHONWARNINGS environment variable.
  • Various other small bugs and fixes.

0.9.2 (2020-11-25)

  • Stop touching objects blacklisted with __pdoc__.
  • Use last __init__ to document class signature (e.g. in case of @typing.overload).
  • Better formatting of nptyping and typing.NewType annotations.
  • Fix minor lunr search bugs from the previous version.

0.9.1 (2020-09-28)

  • Fix circular imports and generally handling of typing annotations when they are unresolvable (regression since 0.9.0).

0.9.0 (2020-08-27)

  • New offline search function using Lunr.js (see lunr_config config tunable).
  • Correctly enumerate members of Enum and typed-only namespaces.
  • Inspect __init__ to obtain true/overridden class instantiation parameters.
  • Bump Highlight.js and use its 'python-repl' annotation for doctests.

0.8.5 (2020-08-27)

... (truncated)

Commits
  • 2a66eb2 CI: Bump deploy-docs.yml Python version to 3.11
  • 66225f4 MNT: Update CHANGELOG for 0.11.1
  • 69c4c24 CI: Bump actions/upload_artifact@v4
  • 94d26e8 BUG: lunr.js: Fix Popen error when node isn't available
  • 80697eb MNT: Bump to minimum Python 3.9
  • d1136ea ENH: Handle union type expressions for Google style docstrings
  • 84ee28b MNT: Update CHANGELOG for 0.11.0
  • 53cb9b8 REF: Avoid if on Py>3.2, which is the only Python we support
  • f7f053e BUG: Handle import of distutils for python 3.12
  • 9b64f7f ENH: Discern properties from variables (#277)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Updates the requirements on [pyogrio](https://github.com/geopandas/pyogrio) and [pdoc3](https://github.com/pdoc3/pdoc) to permit the latest version.

Updates `pyogrio` to 0.9.0
- [Release notes](https://github.com/geopandas/pyogrio/releases)
- [Changelog](https://github.com/geopandas/pyogrio/blob/main/CHANGES.md)
- [Commits](geopandas/pyogrio@v0.6.0...v0.9.0)

Updates `pdoc3` to 0.11.1
- [Release notes](https://github.com/pdoc3/pdoc/releases)
- [Changelog](https://github.com/pdoc3/pdoc/blob/master/CHANGELOG)
- [Commits](pdoc3/pdoc@0.10.0...0.11.1)

---
updated-dependencies:
- dependency-name: pyogrio
  dependency-type: direct:production
  dependency-group: safe-dependencies
- dependency-name: pdoc3
  dependency-type: direct:development
  dependency-group: safe-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Jul 1, 2024
@jacobdadams jacobdadams merged commit a34cb8a into main Jul 8, 2024
3 checks passed
@jacobdadams jacobdadams deleted the dependabot/pip/safe-dependencies-20362d3744 branch July 8, 2024 17:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant