Josh Wilson

Results 17 issues of Josh Wilson

Currently `numba_scipy.special` does no casting for special function arguments like the `special` ufuncs do. A basic example is: ```python >>> import numba >>> import numpy as np >>> import scipy.special...

Buildifier is happy with a build file like this: ``` load("@rules_python//python:defs.bzl", "py_library") load("@pypi//:requirements.bzl", "requirement") py_library( name = "a", srcs = ["a.py"], ) py_library( name = "b", srcs = ["b.py"], )...

Since NumPy implements the normalized sinc function, argument reduction can be performed in the `sin` factor without significant loss of precision for large arguments. To keep the implementation sane, `sinc`...

01 - Enhancement
03 - Maintenance

The implementation of e.g. `nper`: https://github.com/numpy/numpy-financial/blob/master/numpy_financial/_financial.py#L229 requires the usual “split the array up using boolean indexes and then do different things to each hunk” stuff that you have to do...

enhancement
help wanted
question

Mypy prior to 0.800 didn't support Python 3.9, so I was getting test failures locally. Bumped the version in `current_mypy_version.txt` to fix that. New mypy was also unhappy about `test/types`...

This is one approach to https://github.com/thundergolfer/bazel-mypy-integration/issues/19. We have a custom `py_binary` wrapping mypy that bundles some plugins. Is the project open to allowing users to pass their own mypy? The...

We're seeing an exception ``` "tensorflow.python.framework.errors_impl.DeadlineExceededError: Error reading from Cloud BigQuery: Deadline Exceeded [Op:IO>BigQueryReadSession]" ``` when using the read session. This occurs before any data is streamed (i.e. we aren't...

When using `BigQueryClient`, we get sporadic failures of the form: ``` E0225 00:45:10.643495675 3362 oauth2_credentials.cc:220] oauth_fetch: {"created":"@1677285910.643393509","description":"Failed HTTP requests to all targets","file":"external/com_github_grpc_grpc/src/core/lib/http/httpcli.cc","file_line":202,"referenced_errors":[{"created":"@1677285910.640775967","description":"Failed HTTP/1 client request","file":"external/com_github_grpc_grpc/src/core/lib/http/httpcli.cc","file_line":113,"referenced_errors":[{"created":"@1677285910.640730717","description":"Failed to connect to remote host:...

The following issues are inherited from when weave was a part of SciPy: - [ ] https://github.com/scipy/scipy/issues/4947 - [ ] https://github.com/scipy/scipy/issues/3849 - [ ] https://github.com/scipy/scipy/issues/3236 - [ ] https://github.com/scipy/scipy/issues/2902 -...

bug

The ADEs for the graphene model are not compatible with the typical Maxwell CFL condition. To see this, try running the `graphene` test at a lower order; e.g. 6. Options...

bug
maxwell