Ewout ter Hoeven

Results 224 comments of Ewout ter Hoeven

Could I request the A* (a.k.a. A-star) graph search algorithm [wiki](https://en.wikipedia.org/wiki/A*_search_algorithm)? See the [original paper](https://doi.org/10.1109%2FTSSC.1968.300136) and possibly the [NetworkX implementation](https://networkx.org/documentation/stable/reference/algorithms/generated/networkx.algorithms.shortest_paths.astar.astar_path.html).

> Does a histogram feature have to be native (long term, it should be), or can it somehow simply wrap a bar chart implementation? Yeah I might have worded that...

What might be interesting, is that there now is a much used [PyData Sphinx Theme](https://pydata-sphinx-theme.readthedocs.io/en/stable/). NumPy, Pandas, SciPy, NetworkX and [many other projects](https://pydata-sphinx-theme.readthedocs.io/en/stable/examples/gallery.html) use it. So that would add a...

@rht @tpike3 @jackiekazil Maybe we could give this PR/idea another spin. I think the main questions are: 1. Do we want aggregated agent metrics (for plotting) in Mesa? 2. If...

Looks quite awesome @GaelLucero! Are you still working on this? Anything that needs to be discussed?

@JonasJosef123 In the last month there has been some discussion about this feature going on in #1419, you might find that interesting to follow! :)

Just add the token as secret and use the [PyPI publish GitHub Action](https://github.com/marketplace/actions/pypi-publish): ```yml - name: Publish a Python distribution to PyPI uses: pypa/gh-action-pypi-publish@release/v1 with: password: ${{ secrets.PYPI_API_TOKEN }} ```

As far as I know, the whole industry deploys to PyPI this way. Do we really need that 2FA?

Could you explain why? Only maintainers can create tags. The workflow runs only when a tag is created. Thus only then a wheel can be uploaded. ------ I dived a...

When adding `win_arm64` to our [matrix](https://github.com/EwoutH/cython/blob/wheel-ci-arm64/.github/workflows/wheels.yml#L64), I currently get the [following error](https://github.com/EwoutH/cython/actions/runs/3400179489/jobs/5654426762). ``` cibuildwheel version 2.11.2 Build options: platform: 'windows' architectures: {, } build_selector: {'build_config': 'cp311-win_arm64', 'skip_config': '', ... Here...