Skip to content

Commit f6c50ec

Browse files
authored
Documentation and CI updates (#2078)
* Update nightly failure notification list * Needed for pypi * Remove duplicate * Fix skip
1 parent 1c4251a commit f6c50ec

File tree

6 files changed

+5
-8
lines changed

6 files changed

+5
-8
lines changed

.github/workflows/daily-test-build-numpy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,4 +118,4 @@ jobs:
118118
with:
119119
name: nightly build with earliest supported numpy
120120
label: bug,nightly-failure
121-
assignee: kounelisagis,nguyenv,KiterLuc,ihnorton
121+
assignee: kounelisagis,nguyenv,ihnorton

.github/workflows/daily-test-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,4 @@ jobs:
9191
with:
9292
name: nightly build
9393
label: bug,nightly-failure
94-
assignee: kounelisagis,nguyenv,KiterLuc,ihnorton
94+
assignee: kounelisagis,nguyenv,ihnorton

HISTORY.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050

5151
## Improvements
5252

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

5656
## Build system changes

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ Dataframes functionality (`tiledb.from_pandas`, `Array.df[]`) requires [Pandas](
3535

3636
# Contributing
3737

38-
We welcome contributions, please see [`CONTRIBUTING.md`](CONTRIBUTING.md) for suggestions and
38+
We welcome contributions, please see [`CONTRIBUTING.md`](https://github.com/TileDB-Inc/TileDB-Py/blob/dev/CONTRIBUTING.md) for suggestions and
3939
development-build instructions. For larger features, please open an issue to discuss goals and
4040
approach in order to ensure a smooth PR integration and review process.

tiledb/cc/context.cc

-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ void init_context(py::module &m) {
1717
.def(py::init<Config>())
1818
.def(py::init<py::capsule, bool>())
1919

20-
.def("__capsule__",
21-
[](Context &ctx) { return py::capsule(ctx.ptr().get(), "ctx"); })
22-
2320
.def("__capsule__",
2421
[](Context &ctx) { return py::capsule(ctx.ptr().get(), "ctx"); })
2522

tiledb/tests/test_vfs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ def test_ls(self):
292292
)
293293

294294
@pytest.mark.skipif(
295-
pytest.tiledb_vfs not in ["file", "s3", "azure, gcs"],
295+
pytest.tiledb_vfs not in ["file", "s3", "azure", "gcs"],
296296
reason="Only test on local, S3, Azure, and GCS",
297297
)
298298
def test_ls_recursive(self):

0 commit comments

Comments
 (0)