Nathan Goldbaum

Results 121 issues of Nathan Goldbaum

If I specify a URL to install from with a branch specified with `@`, the correct branch is not installed. When I make the following modification to numpy's asv config:...

Some of the usage example movies in the presentation describing easyaccess are a little hard to follow. In addition, it's a little awkward to search a presentation for information and...

This updates the release instructions in response to some feedback @robambalu shared after doing the 0.0.4 release and after #244. It seems most of the maintainers at Point72 are directly...

tag: internal

``` __________________________ TestNumpyAdapter.test_int ___________________________ self = def test_int(self): raw_vals = [7, -13, 21] res = csp.run(g, typ=int, values=np.array(raw_vals), dts=test_dts_ndarray, starttime=test_starttime) self.assertEqual(res["out"], list(zip(test_dts, raw_vals))) for dtype in ("b", "h", "i", "l",...

part: dependencies

**Describe the bug** Running `e_08_kafka.py` errors out **To Reproduce** Steps to reproduce the behavior: ``` cd csp/examples python e_08_kafka.py ``` ``` Traceback (most recent call last): File "/Users/goldbaum/Documents/csp/csp/examples/e_08_kafka.py", line 6,...

type: bug

I'm currently working on adding support for the Python 3.13 free-threaded build to projects in the scientific python ecosystem. We are tracking this work at https://github.com/Quansight-Labs/free-threaded-compatibility. Right now we're focusing...

Enhancement
Build / CI
free-threading

Myself, @lysnikolaou, and @rgommers are working on a new project in collaboration with the Python Runtime team at Meta to add support for Python 3.13 nogil builds in the scientific...

Tracking / planning
39 - free-threading

This is a re-do of #26430. It adds locking to the argparse cache and the cached runtime imports, making both thread safe. Both caches leverage a new `npy_atomic.h` header that...

03 - Maintenance
39 - no-GIL

As noted in [PEP 703](https://peps.python.org/pep-0703/#borrowed-references) C API functions that return borrowed references are problematic in the nogil build. We need to audit our usages and replace any that upgrade a...

03 - Maintenance
39 - no-GIL

The free-threaded python build requires that modules explicitly declare whether or not they support running without the GIL using either [PyUnstable_Module_SetGIL](https://docs.python.org/3.13/c-api/module.html#c.PyUnstable_Module_SetGIL) for single-phase init or the [Py_mod_gil](https://docs.python.org/3.13/c-api/module.html#c.Py_mod_gil) slot for multi-phase...

nogil CPython