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

improved retrievals and adaptions to next pyslk release #48

Open
wants to merge 29 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
766848c
adaptions for slk_helpers 1.13.0
neumannd Dec 5, 2024
e77e1c6
adaptions to core before merging with Flos recent updates
neumannd Dec 5, 2024
3bdb312
Flos and my changes combined
neumannd Dec 5, 2024
8ae1295
gitignore updates
neumannd Dec 5, 2024
b11d820
ran linters
neumannd Dec 5, 2024
eb38b50
code adapted to linter results in github
neumannd Dec 5, 2024
f7ab946
code adapted to linter results in github; part 2
neumannd Dec 5, 2024
fe3579d
code adapted to linter results in github; part 3
neumannd Dec 5, 2024
c19201c
ran black
neumannd Dec 5, 2024
a03a399
added changes in tests by Flo
neumannd Dec 5, 2024
bad6d24
ran black for tests
neumannd Dec 5, 2024
a0f8f00
ran black for tests; part 2
neumannd Dec 5, 2024
0a6bd5c
ran black for tests; part 3
neumannd Dec 5, 2024
fddfde0
further adaptions for tests; part 1
neumannd Dec 5, 2024
34a878b
further adaptions for tests; part 2
neumannd Dec 5, 2024
c416709
further adaptions for tests; part 3
neumannd Dec 5, 2024
cc26954
created typedDict
neumannd Dec 6, 2024
d678800
updated typedDict
neumannd Dec 6, 2024
3081ee4
updated typedDict
neumannd Dec 6, 2024
1367357
retrieve writes missing files to files in cache dir
neumannd Dec 10, 2024
8bb740f
fix: small fixes to attribute/method calls to pyslk
doguskbilir Jan 28, 2025
1015140
Merge pull request #1 from doguskbilir/fix/method-calls
neumannd Feb 3, 2025
f37ed3a
tests(conftest.py): first working prototype for pyslk mocks
doguskbilir Jan 30, 2025
841b522
tests(conftest.py): add mock pyslk exception, type annotations from o…
doguskbilir Feb 3, 2025
337984b
chore: run black
doguskbilir Feb 3, 2025
9ff72cc
tests(conftest.py): fix type annotation after flake8 complains
doguskbilir Feb 3, 2025
4809b24
Merge pull request #2 from doguskbilir/test/pyslk-mock
neumannd Feb 3, 2025
c2ed869
fix(deps): restrict zarr to <3.0.0 to prevent breaking changes
doguskbilir Feb 4, 2025
7d30eed
Merge pull request #4 from doguskbilir/test/pyslk-mock
neumannd Feb 4, 2025
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
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,7 @@ MANIFEST
.coverage
coverage.xml
report.xml

# IDEs
.idea

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
],
extras_require={
"tests": [
"zarr",
"zarr<3.0.0",
"mypy",
"black",
"dask",
Expand Down
Loading