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

Feature/h3ronpy #75

Merged
merged 22 commits into from
Nov 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
768ad48
Refactor h3_utils to use h3ronpy
zacdezgeo Oct 3, 2024
4283cc8
Update lib.py for use of h3ronpy
zacdezgeo Oct 3, 2024
66e3aea
Update ValueError for invalid fields
zacdezgeo Oct 3, 2024
1507512
Add documentation on bug
zacdezgeo Oct 3, 2024
a32650d
Fix issue with Point generation
zacdezgeo Oct 3, 2024
536d36f
Integrate release from h3ronpy that solves cells_to_wkb_points
zacdezgeo Oct 4, 2024
5299454
Remove looping on geometries
zacdezgeo Oct 4, 2024
ac4fdd3
Update user documentation
zacdezgeo Oct 4, 2024
0206fe1
Merge branch 'main' into feature/h3ronpy
zacdezgeo Oct 7, 2024
9e8c7d7
Update user doc notebooks (#76)
zacdezgeo Oct 11, 2024
ad87bf4
Add notebook dependency group and update python library example
zacdezgeo Nov 15, 2024
886493f
Merge pull request #89 from worldbank/bug/88
bpstewar Nov 15, 2024
c23af15
Update notebook based on nbqa
zacdezgeo Nov 21, 2024
798b7fe
Remove unused dependencies in core
zacdezgeo Nov 21, 2024
dd16bc5
Merge branch 'main' into feature/h3ronpy
zacdezgeo Nov 21, 2024
701d6f9
Update lock file
zacdezgeo Nov 21, 2024
d792bac
Install h3ronpy from github while waiting for release
zacdezgeo Nov 21, 2024
5166d40
Fix import for new h3ronpy version
zacdezgeo Nov 21, 2024
b257dd9
Update types of h3_ids from h3ronpy
zacdezgeo Nov 21, 2024
4dd9748
Merge remote-tracking branch 'origin/main' into feature/h3ronpy
zacdezgeo Nov 21, 2024
d07bc21
Update pyproject to use wheel from s3
zacdezgeo Nov 21, 2024
d9844d4
Update python version
zacdezgeo Nov 21, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,24 @@ repos:
files: ^space2stats_api/
exclude: ^space2stats/env/
additional_dependencies:
- types-requests
- types-requests

- repo: https://github.com/nbQA-dev/nbQA
rev: 1.8.7
hooks:
- id: nbqa-ruff
args: ["--fix"]
# Match all `.ipynb` files under `notebooks/user-docs/`
files: ^notebooks/user-docs/.*\.ipynb$
- id: nbqa-isort
args: ["--profile=black"]
additional_dependencies: [isort==5.6.4]
# Match all `.ipynb` files under `notebooks/user-docs/`
files: ^notebooks/user-docs/.*\.ipynb$
- id: nbqa-black
# Match all `.ipynb` files under `notebooks/user-docs/`
files: ^notebooks/user-docs/.*\.ipynb$
- id: nbqa-pyupgrade
args: ["--py37-plus"]
# Match all `.ipynb` files under `notebooks/user-docs/`
files: ^notebooks/user-docs/.*\.ipynb$
Loading