<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/networkx.git/.github, branch main</title>
<subtitle>github.com: networkx/networkx.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/'/>
<entry>
<title>CircleCI: add token for image redirector (#6695)</title>
<updated>2023-05-17T18:48:48+00:00</updated>
<author>
<name>Stefan van der Walt</name>
<email>stefanv@berkeley.edu</email>
</author>
<published>2023-05-17T18:48:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=5d1b0e5c6053f677ce37e022068731b28a34a9ef'/>
<id>5d1b0e5c6053f677ce37e022068731b28a34a9ef</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>try adding circleci artifact secret (#6679)</title>
<updated>2023-05-02T16:51:27+00:00</updated>
<author>
<name>Dan Schult</name>
<email>dschult@colgate.edu</email>
</author>
<published>2023-05-02T16:51:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=340a83e6db3628591ee6126102b3b4eeace7b138'/>
<id>340a83e6db3628591ee6126102b3b4eeace7b138</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove Python 3.8 from CI (#6636)</title>
<updated>2023-04-14T14:27:28+00:00</updated>
<author>
<name>Ross Barnowski</name>
<email>rossbar@berkeley.edu</email>
</author>
<published>2023-04-14T14:27:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=fa3b9ee8870b38ca6ff23abaebbdf838b67fcc22'/>
<id>fa3b9ee8870b38ca6ff23abaebbdf838b67fcc22</id>
<content type='text'>
* Drop Python 3.8 from test workflows.

* Bump Pypy version to 3.9 in test workflow.

* Bump Python to 3.10 in lint, mypy, randomly workflows.

* Bump circleci to Python 3.10.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Drop Python 3.8 from test workflows.

* Bump Pypy version to 3.9 in test workflow.

* Bump Python to 3.10 in lint, mypy, randomly workflows.

* Bump circleci to Python 3.10.</pre>
</div>
</content>
</entry>
<entry>
<title>Replacing codecov Python CLI with gh action. (#6635)</title>
<updated>2023-04-14T05:39:10+00:00</updated>
<author>
<name>Ross Barnowski</name>
<email>rossbar@berkeley.edu</email>
</author>
<published>2023-04-14T05:39:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=bb7a23d69b0f4e2c10ef365a9f8cf6893cb9a2aa'/>
<id>bb7a23d69b0f4e2c10ef365a9f8cf6893cb9a2aa</id>
<content type='text'>
* WIP: Try replacing codecov Python CLI with gh action.

* Update .github/workflows/coverage.yml

Co-authored-by: Dan Schult &lt;dschult@colgate.edu&gt;

---------

Co-authored-by: Jarrod Millman &lt;jarrod.millman@gmail.com&gt;
Co-authored-by: Dan Schult &lt;dschult@colgate.edu&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* WIP: Try replacing codecov Python CLI with gh action.

* Update .github/workflows/coverage.yml

Co-authored-by: Dan Schult &lt;dschult@colgate.edu&gt;

---------

Co-authored-by: Jarrod Millman &lt;jarrod.millman@gmail.com&gt;
Co-authored-by: Dan Schult &lt;dschult@colgate.edu&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Test dispatching via nx-loopback backend (#6536)</title>
<updated>2023-03-28T23:17:46+00:00</updated>
<author>
<name>Jim Kitchen</name>
<email>jim22k@users.noreply.github.com</email>
</author>
<published>2023-03-28T23:17:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=abd0a82d06c0ae8ecc1c60e5a9bde4c0dee08d48'/>
<id>abd0a82d06c0ae8ecc1c60e5a9bde4c0dee08d48</id>
<content type='text'>
* Add tests for nx._dispatch decorator

The dispatch functionality is used to delegate graph
computations to a different backend. Because those backends
are not part of NetworkX, testing the dispatching feature
was not originally added, relying instead on the other
backends (e.g. graphblas-algorithms) to verify the dispatch
functionality is working.

This change creates a "loopback" backend where NetworkX dispatches
to itself for the sole purpose of exercising the dispatching
machinery.

In one incarnation, various tests are augmented to use the
LoopbackGraph family and force loopback dispatching to occur
as normal usage would.

A second incarnation forces *all* tests to run in dispatch mode
but use of a different _dispatch decorator. This mode is triggered
for all of pytest, so it must be tested by the CI system specifically.

* Update CI to hopefully run dispatching auto tests

* Formatting

* More formatting fixes

* Better comments explaining dispatching tests</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Add tests for nx._dispatch decorator

The dispatch functionality is used to delegate graph
computations to a different backend. Because those backends
are not part of NetworkX, testing the dispatching feature
was not originally added, relying instead on the other
backends (e.g. graphblas-algorithms) to verify the dispatch
functionality is working.

This change creates a "loopback" backend where NetworkX dispatches
to itself for the sole purpose of exercising the dispatching
machinery.

In one incarnation, various tests are augmented to use the
LoopbackGraph family and force loopback dispatching to occur
as normal usage would.

A second incarnation forces *all* tests to run in dispatch mode
but use of a different _dispatch decorator. This mode is triggered
for all of pytest, so it must be tested by the CI system specifically.

* Update CI to hopefully run dispatching auto tests

* Formatting

* More formatting fixes

* Better comments explaining dispatching tests</pre>
</div>
</content>
</entry>
<entry>
<title>Remove pdf latex builds of docs (#5572)</title>
<updated>2023-03-01T06:13:37+00:00</updated>
<author>
<name>Mridul Seth</name>
<email>seth.mridul@gmail.com</email>
</author>
<published>2023-03-01T06:13:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=55cfe3b56e846d83cd9e66745aaf77b4da9532da'/>
<id>55cfe3b56e846d83cd9e66745aaf77b4da9532da</id>
<content type='text'>
MAINT: Remove pdf latex builds of docs</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
MAINT: Remove pdf latex builds of docs</pre>
</div>
</content>
</entry>
<entry>
<title>Reset deploy-action param names for latest version. (#6451)</title>
<updated>2023-02-27T20:21:36+00:00</updated>
<author>
<name>Ross Barnowski</name>
<email>rossbar@berkeley.edu</email>
</author>
<published>2023-02-27T20:21:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=db27ccf87d25ede582678f498b51a7aaecc741cd'/>
<id>db27ccf87d25ede582678f498b51a7aaecc741cd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Bump gh-pages deploy bot version. (#6446)</title>
<updated>2023-02-23T15:19:45+00:00</updated>
<author>
<name>Ross Barnowski</name>
<email>rossbar@berkeley.edu</email>
</author>
<published>2023-02-23T15:19:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=0b0a5fc5c512c2cbacd374860e47742e48a8dcfe'/>
<id>0b0a5fc5c512c2cbacd374860e47742e48a8dcfe</id>
<content type='text'>
Should get rid of deprecation warning in the actions log due to
GH bumping the supported node version.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Should get rid of deprecation warning in the actions log due to
GH bumping the supported node version.</pre>
</div>
</content>
</entry>
<entry>
<title>Fix documentation deployment (#6330)</title>
<updated>2023-01-04T19:49:22+00:00</updated>
<author>
<name>Jarrod Millman</name>
<email>jarrod.millman@gmail.com</email>
</author>
<published>2023-01-04T19:49:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=1efafc5a949c3cb9ffc0f9126a1e50dc26fe3d39'/>
<id>1efafc5a949c3cb9ffc0f9126a1e50dc26fe3d39</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update GH actions (#6280)</title>
<updated>2022-12-14T17:12:48+00:00</updated>
<author>
<name>Jarrod Millman</name>
<email>jarrod.millman@gmail.com</email>
</author>
<published>2022-12-14T17:12:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=6be702047b1bb596a8010cf80911bb6ea939b1d1'/>
<id>6be702047b1bb596a8010cf80911bb6ea939b1d1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
