Skip to content

Commit

Permalink
Documentation and CI updates (#2078)
Browse files Browse the repository at this point in the history
* Update nightly failure notification list
* Needed for pypi
* Remove duplicate
* Fix skip
  • Loading branch information
kounelisagis authored Sep 30, 2024
1 parent 1c4251a commit f6c50ec
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/daily-test-build-numpy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,4 +118,4 @@ jobs:
with:
name: nightly build with earliest supported numpy
label: bug,nightly-failure
assignee: kounelisagis,nguyenv,KiterLuc,ihnorton
assignee: kounelisagis,nguyenv,ihnorton
2 changes: 1 addition & 1 deletion .github/workflows/daily-test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,4 @@ jobs:
with:
name: nightly build
label: bug,nightly-failure
assignee: kounelisagis,nguyenv,KiterLuc,ihnorton
assignee: kounelisagis,nguyenv,ihnorton
2 changes: 1 addition & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

## Improvements

* Fix malformed doc str for tiledb.array_schema.ArraySchema in https://github.com/TileDB-Inc/TileDB-Py/pull/2007
* Fix malformed doc str for tiledb.array_schema.ArraySchema by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2007
* Fix deprecation and test by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2021

## Build system changes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ Dataframes functionality (`tiledb.from_pandas`, `Array.df[]`) requires [Pandas](

# Contributing

We welcome contributions, please see [`CONTRIBUTING.md`](CONTRIBUTING.md) for suggestions and
We welcome contributions, please see [`CONTRIBUTING.md`](https://github.com/TileDB-Inc/TileDB-Py/blob/dev/CONTRIBUTING.md) for suggestions and
development-build instructions. For larger features, please open an issue to discuss goals and
approach in order to ensure a smooth PR integration and review process.
3 changes: 0 additions & 3 deletions tiledb/cc/context.cc
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ void init_context(py::module &m) {
.def(py::init<Config>())
.def(py::init<py::capsule, bool>())

.def("__capsule__",
[](Context &ctx) { return py::capsule(ctx.ptr().get(), "ctx"); })

.def("__capsule__",
[](Context &ctx) { return py::capsule(ctx.ptr().get(), "ctx"); })

Expand Down
2 changes: 1 addition & 1 deletion tiledb/tests/test_vfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ def test_ls(self):
)

@pytest.mark.skipif(
pytest.tiledb_vfs not in ["file", "s3", "azure, gcs"],
pytest.tiledb_vfs not in ["file", "s3", "azure", "gcs"],
reason="Only test on local, S3, Azure, and GCS",
)
def test_ls_recursive(self):
Expand Down

0 comments on commit f6c50ec

Please sign in to comment.