<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/networkx.git/networkx/algorithms/approximation/kcomponents.py, 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>Lint using Ruff (#6371)</title>
<updated>2023-02-19T17:14:00+00:00</updated>
<author>
<name>danieleades</name>
<email>33452915+danieleades@users.noreply.github.com</email>
</author>
<published>2023-02-19T17:14:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=5fcf01b9a43a097c4f579486023d1279b2b88619'/>
<id>5fcf01b9a43a097c4f579486023d1279b2b88619</id>
<content type='text'>
* lint and fix using ruff

* add flake8-pie lints

* remove useless import alias

* bump version

* bump deps

---------

Co-authored-by: daniel.eades &lt;daniel.eades@hotmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lint and fix using ruff

* add flake8-pie lints

* remove useless import alias

* bump version

* bump deps

---------

Co-authored-by: daniel.eades &lt;daniel.eades@hotmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title> Use isort with pre-commit to enforce import guidelines (#5659)</title>
<updated>2022-06-02T15:54:09+00:00</updated>
<author>
<name>Mridul Seth</name>
<email>seth.mridul@gmail.com</email>
</author>
<published>2022-06-02T15:54:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=5c0b11afb4c0882a070d522ef3fa41482ba935d3'/>
<id>5c0b11afb4c0882a070d522ef3fa41482ba935d3</id>
<content type='text'>
* Add isort to pre-commit

* Run isort on all python files (except __init__.py ones)</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Add isort to pre-commit

* Run isort on all python files (except __init__.py ones)</pre>
</div>
</content>
</entry>
<entry>
<title>Cache edges, degree, adj properties of Graph classes (#5614)</title>
<updated>2022-05-12T04:32:29+00:00</updated>
<author>
<name>Dan Schult</name>
<email>dschult@colgate.edu</email>
</author>
<published>2022-05-12T04:32:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=f50fc70b8cb6b4f5217a6d5505ba0e2b82b4761b'/>
<id>f50fc70b8cb6b4f5217a6d5505ba0e2b82b4761b</id>
<content type='text'>
* Make all graph properties cached properties
* one test function is not needed due to test inheritance</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Make all graph properties cached properties
* one test function is not needed due to test inheritance</pre>
</div>
</content>
</entry>
<entry>
<title>Minor improvements from general code readthrough (#5414)</title>
<updated>2022-03-25T19:10:10+00:00</updated>
<author>
<name>Ross Barnowski</name>
<email>rossbar@berkeley.edu</email>
</author>
<published>2022-03-25T19:10:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=cc1db275efc709cb964ce88abbfa877798d58c10'/>
<id>cc1db275efc709cb964ce88abbfa877798d58c10</id>
<content type='text'>
* Add deprecated directive to reversed docstring.

* Add missing dep directives to shpfiles.

* Remove defn of INF sentinel.

* typo.

* str -&gt; comment in forloop.

* STY: appropriate casing for var name.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Add deprecated directive to reversed docstring.

* Add missing dep directives to shpfiles.

* Remove defn of INF sentinel.

* typo.

* str -&gt; comment in forloop.

* STY: appropriate casing for var name.</pre>
</div>
</content>
</entry>
<entry>
<title>Add Mypy type checking infrastructure (#5127)</title>
<updated>2021-11-18T05:12:56+00:00</updated>
<author>
<name>Ross Barnowski</name>
<email>rossbar@berkeley.edu</email>
</author>
<published>2021-11-18T05:12:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=00c261f951ae6734001e0419d2bc754eef6dd1b2'/>
<id>00c261f951ae6734001e0419d2bc754eef6dd1b2</id>
<content type='text'>
* Add minimal mypy configuration file.

* Add mypy workflow to GH.

* Properly import sentinels from traversal.edgedfs.

* mypy doesn't like variables named \"e\".

* Rm annotations from single function.

* Fix name collisions in test suite.

Make sure all tests have unique names.

* Rm unused random seed in test setup.

* Rm redundant __all__ specification.

* Silence mypy error from sum(). Mypy bug?

* Fix tsp test instantiation nit.

* \"type: ignore\" to suppress conditional fn sigature errors.

* Remaining \"type: ignore\" to appease mypy.

* Configure mypy to ignore inheritance issues.

* Update exclude conf for CI.

 - Add yaml
 - Reformat regex containing reportviews

* Rm partial annotations from lukes.py.

Fixes mypy errors due to unannotated code.

* Reorg defaultdict to reduce type: ignore cruft.

* Homogenize signatures for fns defined in conditionals.

* err as varname only in exception catching.

* Fix name collision in Bellman-Ford test suite.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Add minimal mypy configuration file.

* Add mypy workflow to GH.

* Properly import sentinels from traversal.edgedfs.

* mypy doesn't like variables named \"e\".

* Rm annotations from single function.

* Fix name collisions in test suite.

Make sure all tests have unique names.

* Rm unused random seed in test setup.

* Rm redundant __all__ specification.

* Silence mypy error from sum(). Mypy bug?

* Fix tsp test instantiation nit.

* \"type: ignore\" to suppress conditional fn sigature errors.

* Remaining \"type: ignore\" to appease mypy.

* Configure mypy to ignore inheritance issues.

* Update exclude conf for CI.

 - Add yaml
 - Reformat regex containing reportviews

* Rm partial annotations from lukes.py.

Fixes mypy errors due to unannotated code.

* Reorg defaultdict to reduce type: ignore cruft.

* Homogenize signatures for fns defined in conditionals.

* err as varname only in exception catching.

* Fix name collision in Bellman-Ford test suite.</pre>
</div>
</content>
</entry>
<entry>
<title>Change exception varname e to err (#5130)</title>
<updated>2021-10-15T19:01:14+00:00</updated>
<author>
<name>Dan Schult</name>
<email>dschult@colgate.edu</email>
</author>
<published>2021-10-15T19:01:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=e611fa1e439f6bd0c35fd8db2ca1ced56070a915'/>
<id>e611fa1e439f6bd0c35fd8db2ca1ced56070a915</id>
<content type='text'>
A more descriptive variable name for exceptions. This reduces local var naming conflicts when
\`e\` is used e.g. to represent edges as a loop variable.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A more descriptive variable name for exceptions. This reduces local var naming conflicts when
\`e\` is used e.g. to represent edges as a loop variable.</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: Fix links, use DOI links, wayback machine where required (#4868)</title>
<updated>2021-06-08T16:58:38+00:00</updated>
<author>
<name>Mridul Seth</name>
<email>seth.mridul@gmail.com</email>
</author>
<published>2021-06-08T16:58:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=5bc077c27155649f2503150a2623f49de093b332'/>
<id>5bc077c27155649f2503150a2623f49de093b332</id>
<content type='text'>
* Fix links, use DOI links, wayback machine where required

* Add nx-guides to intersphinx mapping.

* Replace external mpl link w/ intersphinx.

* Update mpl intersphinx mapping.

Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Fix links, use DOI links, wayback machine where required

* Add nx-guides to intersphinx mapping.

* Replace external mpl link w/ intersphinx.

* Update mpl intersphinx mapping.

Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Fix docstrings and remove unused variables (#4501)</title>
<updated>2021-01-09T21:39:05+00:00</updated>
<author>
<name>Andrea Tomassilli</name>
<email>44986518+atomassi@users.noreply.github.com</email>
</author>
<published>2021-01-09T21:39:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=f6db7247c69a25def6e0d01054e174eb074feadd'/>
<id>f6db7247c69a25def6e0d01054e174eb074feadd</id>
<content type='text'>
Co-authored-by: Dan Schult &lt;dschult@colgate.edu&gt;
Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: Dan Schult &lt;dschult@colgate.edu&gt;
Co-authored-by: Ross Barnowski &lt;rossbar@berkeley.edu&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed docs + added decorator for k_components approx (#4474)</title>
<updated>2020-12-20T19:31:23+00:00</updated>
<author>
<name>tom</name>
<email>44986518+atomassi@users.noreply.github.com</email>
</author>
<published>2020-12-20T19:31:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=fa30d8b55e29d201d26bf1b8856ebc7e968e78d7'/>
<id>fa30d8b55e29d201d26bf1b8856ebc7e968e78d7</id>
<content type='text'>
Co-authored-by: atomassi &lt;andrea.tomassilli@sky.uk&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: atomassi &lt;andrea.tomassilli@sky.uk&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Format w/ black==20.8b1</title>
<updated>2020-10-06T19:11:32+00:00</updated>
<author>
<name>Jarrod Millman</name>
<email>jarrod.millman@gmail.com</email>
</author>
<published>2020-10-06T17:22:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=735e6d856b81989cc12dfa30d8cd8e2ddb7dcead'/>
<id>735e6d856b81989cc12dfa30d8cd8e2ddb7dcead</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
