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

Release v1.8.0 #149

Merged
merged 42 commits into from
Dec 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
0de4f75
make _solve_model staticmethod
dbrakenhoff Oct 16, 2024
88c976f
allow parallel solves using ArcticDBConnector
dbrakenhoff Oct 16, 2024
d825873
default progressbar to True
dbrakenhoff Oct 16, 2024
82b4b3e
allow parallel solves using ArcticDBConnector
dbrakenhoff Oct 16, 2024
88d0762
add verbose argument to Connectors to allow suppressing initializatio…
dbrakenhoff Oct 16, 2024
c436fa3
make _parallel an abstractmethod, delete ConnectorUtil
dbrakenhoff Oct 21, 2024
4d17281
move ConnectorUtil
dbrakenhoff Oct 21, 2024
06b8971
move _solve_model to connectors.py
dbrakenhoff Oct 21, 2024
20bb47d
Add _parallel methods to Connectors
dbrakenhoff Oct 21, 2024
0082d57
fix imports
dbrakenhoff Oct 21, 2024
a939792
modify solve_models to use connectors _parallel and connectors._solve…
dbrakenhoff Oct 21, 2024
ba70629
clean up imports
dbrakenhoff Oct 21, 2024
5afc82b
allow searching in all libraries
dbrakenhoff Oct 21, 2024
0926d03
ruff
dbrakenhoff Oct 21, 2024
0877510
Merge pull request #148 from pastas/improve_search
dbrakenhoff Oct 22, 2024
67ce948
Merge pull request #147 from pastas/parrallel-arctic
dbrakenhoff Nov 11, 2024
a0d7a3f
Add more parallel support
dbrakenhoff Nov 19, 2024
1de287f
Add more parallel support
dbrakenhoff Nov 19, 2024
891dfd0
add example notebook
dbrakenhoff Nov 19, 2024
a3c5c14
add nb to docs
dbrakenhoff Nov 19, 2024
bc592af
improve docs example
dbrakenhoff Nov 19, 2024
ad0f361
add docstring / type hints
martinvonk Nov 20, 2024
770d80b
fix func in test_apply test
martinvonk Nov 20, 2024
9befab4
improve docs
dbrakenhoff Nov 20, 2024
6caab0f
fix get_statistics for arcticdb (forgot to set apply to parallel)
dbrakenhoff Nov 20, 2024
f2a28c9
use os.cpu_count()
dbrakenhoff Nov 20, 2024
edd71e7
ruff
dbrakenhoff Nov 20, 2024
4ebb58a
add note that _get_statistics is meant to be run in parallel mode by …
dbrakenhoff Nov 20, 2024
24ccbc9
add hydropandas to full install
dbrakenhoff Nov 20, 2024
1d39b0e
Merge pull request #150 from pastas/more_parallel
dbrakenhoff Nov 20, 2024
3c06c96
codespell
dbrakenhoff Nov 20, 2024
7b6377d
write .pas files to zipfile instead of .json
dbrakenhoff Nov 20, 2024
314b2a0
version 1.8.0
dbrakenhoff Nov 20, 2024
c431205
improve from_zip():
dbrakenhoff Nov 20, 2024
f410b34
fix knmi units
dbrakenhoff Nov 20, 2024
5b2d42c
forgot to modify .json extensions
dbrakenhoff Nov 20, 2024
1f15188
limit length of downloads
dbrakenhoff Nov 20, 2024
329386e
update zipfile to new pas file format
dbrakenhoff Nov 20, 2024
8cf1dd3
Merge pull request #152 from pastas/more_parallel
dbrakenhoff Nov 20, 2024
9bce37a
try make note box prettier
dbrakenhoff Nov 20, 2024
33a8f73
add scrict=True to zip: https://peps.python.org/pep-0618/
martinvonk Dec 24, 2024
80b3bde
typo
martinvonk Dec 24, 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
3 changes: 3 additions & 0 deletions docs/examples/004_parallel_processing.nblink
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"path": "../../examples/notebooks/ex04_parallel_processing.ipynb"
}
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ An small example using pastastore::
import pandas as pd

# initialize a connector and a pastastore
pstore = pst.PastaStore(pst.PasConnector("./path_to_folder", name="my_dbase"))
pstore = pst.PastaStore(pst.PasConnector("my_dbase", "./path_to_folder"))

# read some data
series = pd.read_csv("some.csv", index_col=[0], parse_dates=True)
Expand Down
Loading
Loading