1
0

71 Commits

Author SHA256 Message Date
Ana Guerrero
60396d91d0 Accepting request 1170766 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/1170766
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-networkx?expand=0&rev=37
2024-04-30 15:25:52 +00:00
72e22dd799 Accepting request 1169974 from home:mcalabkova:branches:devel:languages:python:numeric
- Update to 3.3
  * Add @nx._dispatch decorator to most algorithms
  * Remove topo_order kwarg from is_semiconnected without deprecation
  * API: Add a decorator to deprecate positional args
  * Drop support for Python 3.8 and 3.9
  * Support Python 3.12
  * Test on Python 3.13-dev
  * Don't test numpy2 nightlies
  * Unpin scipy upperbound for tests
  * Disallow negative number of nodes in complete_multipartite_graph
  * [A-star] Added expansion pruning via cutoff if cutoff is provided
  * Add Tadpole graph
  * [Feat] Random expanders utilities
  * Add Kirchhoff index / Effective graph resistance 
  * Changed return types of shortest path methods to improve consistency
  * Many more changes, see upstream changelog
- drop doc build, PyPI tarball doesn't support it anymore

OBS-URL: https://build.opensuse.org/request/show/1169974
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=58
2024-04-29 12:34:43 +00:00
Dominique Leuenberger
0659639456 Accepting request 1101302 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/1101302
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-networkx?expand=0&rev=36
2023-07-30 18:57:35 +00:00
2d1eba2499 Accepting request 1101088 from home:mcalabkova:branches:devel:languages:python:numeric
- update to 3.1
  * Better syncing between G._succ and G._adj for directed G. And 
    slightly better speed from all the core adjacency data structures.
  * If your code sets G._succ or G._adj to new dictionary-like objects, 
    you no longer have to set them both. Setting either will ensure 
    the other is set as well.
  * If you use the presence of the attribute _adj as a criteria for 
    the object being a Graph instance, that code may need updating.
  * We have added an experimental plugin feature, which let users 
    choose alternate backends like GraphBLAS, CuGraph for computation.
  * Improved integration with the general Scientific Python ecosystem.
  * New drawing feature (module and tests) from NetworkX graphs to 
    the TikZ library of TeX/LaTeX.
  * Added an improved subgraph isomorphism algorithm called VF2++.
  * OrderedGraph and other Ordered classes are replaced by Graph 
    because Python dicts (and thus networkx graphs) now maintain order.
  * The attrs keyword argument will be replaced with keyword only 
    arguments source, target, name, key and link for 
    json_graph/node_link functions.
  * Supports Python 3.8, 3.9, 3.10, and 3.11.
  * Stopped building PDF version of docs
  * Use Ruff for linting

OBS-URL: https://build.opensuse.org/request/show/1101088
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=56
2023-07-29 08:40:23 +00:00
Dominique Leuenberger
551f284fb7 Accepting request 1093034 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/1093034
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-networkx?expand=0&rev=35
2023-06-16 14:51:45 +00:00
536bd59c83 Accepting request 1092854 from home:ecsos:python
- Add %{?sle15_python_module_pythons}

OBS-URL: https://build.opensuse.org/request/show/1092854
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=54
2023-06-14 06:26:11 +00:00
Dominique Leuenberger
00d5b6f442 Accepting request 1056126 from devel:languages:python:numeric
- update to 2.8.8:
  * Fix warnings from running tests in randomized order 
  * Update pydata-sphinx-theme 
  * update secutiry link to tidelift 
  * Update numpydoc 
  * Support Python 3.11 
  * Minor updates to expanders generator tests 
  * Add missing asserts to tests 
  * fixes #6036 
  * Improve test coverage expanders line graph generators solved (PR for issue #6034) 
  * Replace .A call with .toarray for sparse array in example. 
  * Improve test coverage for algorithms/richclub.py 
  * Tested boykov_kolmogorov and dinitz with cutoff 
  * Improve test coverage for multigraph class 
  * Improve test coverage for algorithms in dominating_set.py (PR for issue 6032) 
  * Improve test coverage for graph class 
  * added coverage in generators/tree.py 
  * DOC: Specifically branch off main, instead of current branch 
  * Improve test coverage for multidigraph class 
  * Improve test coverage for digraph class 
  * Improve test coverage for algorithms in dispersion.py 
  * Test on Python 3.11 
  * Improve test coverage in algorithms shortest paths unweighted.py 
  * Increased test coverage algorithms/matching.py 
  * Renamed test functions in test_lowest_common_ancestors 
  * Increase covering coverage 
  * Add example for fiedler_vector 
  * Improve test coverage for cycles.py 
  * Added an example in all_pairs_node_connectivity  
  * Amount of nodes and edges have mistakes when reading adjlist file

OBS-URL: https://build.opensuse.org/request/show/1056126
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-networkx?expand=0&rev=34
2023-01-06 16:04:56 +00:00
cfa4e3768f - update to 2.8.8:
* Fix warnings from running tests in randomized order 
  * Update pydata-sphinx-theme 
  * update secutiry link to tidelift 
  * Update numpydoc 
  * Support Python 3.11 
  * Minor updates to expanders generator tests 
  * Add missing asserts to tests 
  * fixes #6036 
  * Improve test coverage expanders line graph generators solved (PR for issue #6034) 
  * Replace .A call with .toarray for sparse array in example. 
  * Improve test coverage for algorithms/richclub.py 
  * Tested boykov_kolmogorov and dinitz with cutoff 
  * Improve test coverage for multigraph class 
  * Improve test coverage for algorithms in dominating_set.py (PR for issue 6032) 
  * Improve test coverage for graph class 
  * added coverage in generators/tree.py 
  * DOC: Specifically branch off main, instead of current branch 
  * Improve test coverage for multidigraph class 
  * Improve test coverage for digraph class 
  * Improve test coverage for algorithms in dispersion.py 
  * Test on Python 3.11 
  * Improve test coverage in algorithms shortest paths unweighted.py 
  * Increased test coverage algorithms/matching.py 
  * Renamed test functions in test_lowest_common_ancestors 
  * Increase covering coverage 
  * Add example for fiedler_vector 
  * Improve test coverage for cycles.py 
  * Added an example in all_pairs_node_connectivity  
  * Amount of nodes and edges have mistakes when reading adjlist file

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=52
2023-01-04 22:19:52 +00:00
Dominique Leuenberger
c9b436fc25 Accepting request 1007533 from devel:languages:python:numeric
- update to 2.8.7:
  * Fixed unused root argument in has_bridges (#5846)
  * docstring updates for `union`, `disjoint_union`, and `compose` (#5892)
  * Updated networkx/classes/function.py . Solves Issue #5463 (#5474)
  * Improved documentation for all_simple_paths (#5944)
  * Change is_path to return False when node not in G instead of raising exception (#5943)
  * Minor docstring touchups and test refactor for `is_path` (#5967)
  * Update documentation header links for latest pydata-sphinx-theme (#5966)
  * Fix failing example due to mpl 3.6 colorbar. (#5994)
  * Add Tidelift security vulnerability link (#6001)
  * Update linters (#6006)
  * ``is_path`` used to raise a `KeyError` when the ``path`` argument contained
    a node that was not in the Graph. The behavior has been updated so that
    ``is_path`` returns `False` in this case rather than raising the exception.

- update to version 2.8.6:
  * Highlights
    + Minor documentation and bug fixes.
  * Merged PRs
    + Add random_spanning_tree to documentation (#5810)
    + DOC: Switch to enumerated list in quotient_graph docstring
      (#5837)
    + Add warning to nx_agraph about layout nondeterminism. (#5832)
    + Update docs to include description of the return_seen kwarg
      (#5891)
    + Add cache reset for when G._node is changed (#5894)
    + Allow classes to relabel nodes – casting (#5903)
    + Update lattice.py (#5914)
    + Add to about_us.rst (#5919)
    + Update precommit hooks (#5923)

OBS-URL: https://build.opensuse.org/request/show/1007533
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-networkx?expand=0&rev=33
2022-10-03 11:43:49 +00:00
d9baae4536 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=50 2022-10-02 09:55:25 +00:00
d1477ddc67 - update to 2.8.7:
* Fixed unused root argument in has_bridges (#5846)
  * docstring updates for `union`, `disjoint_union`, and `compose` (#5892)
  * Updated networkx/classes/function.py . Solves Issue #5463 (#5474)
  * Improved documentation for all_simple_paths (#5944)
  * Change is_path to return False when node not in G instead of raising exception (#5943)
  * Minor docstring touchups and test refactor for `is_path` (#5967)
  * Update documentation header links for latest pydata-sphinx-theme (#5966)
  * Fix failing example due to mpl 3.6 colorbar. (#5994)
  * Add Tidelift security vulnerability link (#6001)
  * Update linters (#6006)
  * ``is_path`` used to raise a `KeyError` when the ``path`` argument contained
    a node that was not in the Graph. The behavior has been updated so that
    ``is_path`` returns `False` in this case rather than raising the exception.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=49
2022-10-02 09:40:53 +00:00
46bb8aec67 Accepting request 1002428 from home:apersaud:branches:devel:languages:python:numeric
update to latest version

OBS-URL: https://build.opensuse.org/request/show/1002428
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=48
2022-09-12 08:27:15 +00:00
8a890eaaf4 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=47 2022-06-04 17:50:56 +00:00
eb172d5d83 - update to 2.8.2:
* Fix doc deploy
  * Bump release version
  * MAINT: Update dfs_test with more comprehensive tests (#5654)
  * Bump release version
  * Fix __setstate__ for OutEdgeView subclasses, read _adjdict from state (#5657)
  * Add examples & improve documentation of voterank (#5500)
  * Change default value of arrowstyle for undirected graphs (#5514)
  * added edge labels in weighted graph (#5521)
  * Added examples in is_forest() and is_tree() (#5524)
  * a hack to force self edges to be ignored on the first node inspected (#5516)
  * De-Regression: eagerly evaluate not_implemented_for in decorated generators (#5537)
  * Improve documentation of PlanarEmbedding class (#5523)
  * PlanarEmbedding in autosummary instead of autoclass. (#5548)
  * Added examples in tournament and tree functions (#5536)
  * Fixup PlanarEmbedding See Also (#5556)
  * Fix min_edge_cover in special cases (#5538)  and correct documentation (#5549)
  * Add is_planar function.  Solves issue #5109 (#5544)
  * Improve bridges documentation (#5519)
  * fix greedy_modularity when multiple components exist. (#5550)
  *  Fix issue probably-meant-fstring found at https://codereview.doctor (#5574)
  * MAINT: Fix sphinx build errors and warnings (#5571)
  * replace induced_subgraph example with directly relevant example (#5576)
  * Add examples to compose operation (#5583)
  * Fix reference in label_propagation_communities docstring (#5588)
  * Use sets instead of lists for collecting flowfuncs in tests. (#5589)
  * Update .degree() docs: outdated return type (#5529)
  * Update numpydoc (#5580)
  * Add a space in an error (#5601)
  * improve docstring for read_doc, see issue #5604 (#5605)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=46
2022-06-04 17:50:50 +00:00
Dominique Leuenberger
00d9405a9d Accepting request 936169 from devel:languages:python:numeric
- Add patch xfail-pydot-tests.patch:
  * From upstream, survive pydot test failures.

OBS-URL: https://build.opensuse.org/request/show/936169
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-networkx?expand=0&rev=32
2021-12-09 18:45:20 +00:00
Steve Kowalik
224e5fc9db - Add patch xfail-pydot-tests.patch:
* From upstream, survive pydot test failures.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=45
2021-12-07 08:06:59 +00:00
Dominique Leuenberger
e260b97117 Accepting request 925266 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/925266
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-networkx?expand=0&rev=31
2021-10-18 20:03:25 +00:00
f6c2a62ba7 Accepting request 925188 from home:fbauzac:branches:devel:languages:python:numeric
- update to 2.6.3:
  * Fix modularity functions (gh#networkx/networkx#5072)
  * CI/MAINT: drop gdal tests (gh#networkx/networkx#5068)
  * modularity_max: provide labels to get_edge_data (gh#networkx/networkx#4965)
  * Improvements to greedy_modularity_community (gh#networkx/networkx#4996)
  * use weight arg instead of 'weight' key at greedy_modularity_communities()
  * modularity_max: breaking the loop when given community size is reached (gh#networkx/networkx#4950)
  * modularity_max: allow input of desired number of communities
  * greedy_modularity_communities with digraphs and multi(di)graphs (gh#networkx/networkx#5007) (gh#networkx/networkx#5007)
  * Allow greedy_modularity_communities to use floating point weights or resolution (gh#networkx/networkx#5065)
  * change i,j,k notation to u,v,w (no indexes since gh#networkx/networkx#5007)

OBS-URL: https://build.opensuse.org/request/show/925188
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=44
2021-10-14 14:27:19 +00:00
Richard Brown
514cbcb410 Accepting request 909685 from devel:languages:python:numeric
- require pandas 

- update to 2.6.2:
  * This release is the result of 11 months of work with over 363 pull requests by
    91 contributors. Highlights include:
  * Dropped support for Python 3.6.
  * NumPy, SciPy, Matplotlib, and pandas are now default requirements.
  * NetworkX no longer depends on the library "decorator".
  * Improved example gallery
  * Removed code for supporting Jython/IronPython
  * The __str__ method for graph objects is more informative and concise.
  * Improved import time
  * Improved test coverage
  * New documentation theme
  * Add functionality for drawing self-loop edges
  * Add approximation algorithms for Traveling Salesman Problem
- drop 0001-Replace-hash-function-for-test-of-weighted-astar.patch,
  yaml-loader.patch (merged upstream)

OBS-URL: https://build.opensuse.org/request/show/909685
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-networkx?expand=0&rev=30
2021-08-11 09:46:59 +00:00
dd6adf9467 - require pandas
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=43
2021-08-02 07:28:21 +00:00
b8a66ba0dc OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=42 2021-08-01 09:08:36 +00:00
42fbfe938d - update to 2.6.2:
* This release is the result of 11 months of work with over 363 pull requests by
    91 contributors. Highlights include:
  * Dropped support for Python 3.6.
  * NumPy, SciPy, Matplotlib, and pandas are now default requirements.
  * NetworkX no longer depends on the library "decorator".
  * Improved example gallery
  * Removed code for supporting Jython/IronPython
  * The __str__ method for graph objects is more informative and concise.
  * Improved import time
  * Improved test coverage
  * New documentation theme
  * Add functionality for drawing self-loop edges
  * Add approximation algorithms for Traveling Salesman Problem
- drop 0001-Replace-hash-function-for-test-of-weighted-astar.patch,
  yaml-loader.patch (merged upstream)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=41
2021-07-28 23:39:50 +00:00
Dominique Leuenberger
f7fbf8c9b5 Accepting request 894172 from devel:languages:python:numeric
- update to 2.5.1:
  * pin requirements

OBS-URL: https://build.opensuse.org/request/show/894172
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-networkx?expand=0&rev=29
2021-05-20 17:23:28 +00:00
2260254dd2 - update to 2.5.1:
* pin requirements

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=39
2021-05-18 22:30:39 +00:00
Richard Brown
7bf35f6c4b Accepting request 874685 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/874685
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-networkx?expand=0&rev=28
2021-02-25 17:26:34 +00:00
1d230639f2 Accepting request 874668 from home:bnavigator:branches:devel:languages:python:numeric
- Refine the optional test dependencies. We want to test python39 
  in the future.

"Never say never again", I guess. The drop of python36 "for good" was not that long actually. :p

OBS-URL: https://build.opensuse.org/request/show/874668
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=37
2021-02-23 18:50:37 +00:00
542624fbeb Accepting request 873985 from home:jayvdb:branches:devel:languages:python:numeric
- Re-enable Python 3.6 builds without optional dependencies
- Add test dependencies lxml, pandas and pygraphviz

OBS-URL: https://build.opensuse.org/request/show/873985
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=36
2021-02-20 18:13:48 +00:00
Dominique Leuenberger
30d82bec0a Accepting request 868431 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/868431
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-networkx?expand=0&rev=27
2021-02-10 20:29:52 +00:00
c050304104 Accepting request 868388 from home:bnavigator:branches:devel:languages:python:numeric
- Disable python36 build for good. Next up is SciPy 1.6.0 dropping
  Python 3.6 because of NEP 29.
- Mark the doc package files as doc.

OBS-URL: https://build.opensuse.org/request/show/868388
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=34
2021-02-01 17:27:56 +00:00
Dominique Leuenberger
3d53b49f5a Accepting request 867976 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/867976
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-networkx?expand=0&rev=26
2021-02-01 12:27:14 +00:00
997ad908e8 Accepting request 867833 from home:bnavigator:branches:devel:languages:python:numeric
- Temporarily reenable python36 build until SciPy is updated,
  because the PyYAML fix needs to be merged first

OBS-URL: https://build.opensuse.org/request/show/867833
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=32
2021-01-30 12:50:32 +00:00
420b614820 Accepting request 867184 from home:mcalabkova:branches:devel:languages:python
- Add yaml-loader.patch adding support for new PyYAML

OBS-URL: https://build.opensuse.org/request/show/867184
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=31
2021-01-27 13:03:37 +00:00
272a4ad474 Accepting request 863950 from home:bnavigator:branches:devel:languages:python:numeric
- Skip python36 because of SciPy 1.6.0

OBS-URL: https://build.opensuse.org/request/show/863950
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=30
2021-01-18 06:58:48 +00:00
Dominique Leuenberger
e572dc2eb8 Accepting request 839780 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/839780
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-networkx?expand=0&rev=25
2020-10-25 17:09:24 +00:00
143862eac7 Accepting request 839779 from home:alarrosa:branches:devel:languages:python:numeric
- Add patch from upstream that fixes gh#networkx/networkx#4203)
  * 0001-Replace-hash-function-for-test-of-weighted-astar.patch
- Drop patch that is not needed anymore:
  * disable-test-failing-in-i586.patch

OBS-URL: https://build.opensuse.org/request/show/839779
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=28
2020-10-06 11:51:12 +00:00
Dominique Leuenberger
bfb48b7651 Accepting request 833761 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/833761
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-networkx?expand=0&rev=24
2020-09-14 10:16:42 +00:00
8d51cc5087 Accepting request 833726 from home:alarrosa:branches:devel:languages:python:numeric
- Update to 2.5:
  * Highlights:
    + Dropped support for Python 3.5.
    + add Pathlib support to work with files.
    + improve performance.
    + Updated docs and tests.
    + Removed code designed to work with Python 2.
  * New Functions:
    + lukes_partitioning
    + triadic analysis functions
    + functions for trophic levels analysis
    + d_separated
    + is_regular and other regular graph measures
    + graph_hash using Weisfeiler Lehman methods
    + common_neighbor_centrality (CCPA link prediction)
    + max_weight_clique
    + path_weight and is_path
    + rescale_layout_dict
    + junction_tree
  * New generators:
    + paley_graph
    + interval_graph
  * New layouts:
    + multipartite_layout
- To see improvements, API changes and deprecations, please visit:
  https://networkx.github.io/documentation/stable/release/release_2.5.html
- Dropped patches already included by upstream:
  * numpy-38-test.patch
  * matplotlib.patch
  * networkx-pr4012-use-mpl.patch

OBS-URL: https://build.opensuse.org/request/show/833726
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=26
2020-09-11 11:31:55 +00:00
Dominique Leuenberger
9dcfe5258d Accepting request 822138 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/822138
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-networkx?expand=0&rev=23
2020-08-01 10:29:45 +00:00
Tomáš Chvátal
d509c569dc Accepting request 822136 from home:bnavigator:branches:devel:languages:python:numeric
-  gh#networkx/networkx#4012 networkx-pr4012-use-mpl.patch
   new matplotlib removed keyword argument 'warn' for mpl.use()

OBS-URL: https://build.opensuse.org/request/show/822136
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=24
2020-07-21 17:51:23 +00:00
Dominique Leuenberger
a6ed1de913 Accepting request 820984 from devel:languages:python:numeric
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/820984
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-networkx?expand=0&rev=22
2020-07-17 18:45:09 +00:00
5496e47ab6 - We don't need to skip TestKatzCentralityDirectedNumpy when we don't
use -n auto parameter of pytest (gh#networkx/networkx#4030)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=22
2020-07-07 20:33:55 +00:00
Dominique Leuenberger
f326f241a4 Accepting request 817741 from devel:languages:python:numeric
- Skipping over test_subgraph_centrality_big_graph is not
  necessary anymore (gh#networkx/networkx#3304)

OBS-URL: https://build.opensuse.org/request/show/817741
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-networkx?expand=0&rev=21
2020-06-30 19:54:50 +00:00
d70efc0b39 Add metadata to skipped tests
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=20
2020-06-29 14:41:57 +00:00
08768e77e0 Remove unnecessary comment
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=19
2020-06-29 10:03:16 +00:00
a082dd8113 - Skipping over test_subgraph_centrality_big_graph is not
necessary anymore (gh#networkx/networkx#3304)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=18
2020-06-29 10:02:26 +00:00
Dominique Leuenberger
10fdcd6a6f Accepting request 790492 from devel:languages:python:numeric
- Add patch to fix matplotlib deprecation:
  * matplotlib.patch
- Skip two tests that keep failing everywhere

OBS-URL: https://build.opensuse.org/request/show/790492
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-networkx?expand=0&rev=20
2020-04-19 19:48:39 +00:00
Tomáš Chvátal
8a6a3a140c - Add patch to fix matplotlib deprecation:
* matplotlib.patch
- Skip two tests that keep failing everywhere

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=16
2020-04-01 09:00:45 +00:00
Dominique Leuenberger
e1a374d1ba Accepting request 750202 from devel:languages:python:numeric
- Drop incorrectly calculated dependency on python33
- Switch to using %pytest macro

- Update to version 2.4
  Highlights:
  * Remove deprecated code from 1.x
  * Support for Python 3.8
  * Switched to pytest for testing
  * Last release to support Python 3.5
  * Fifteen new fuctions, including onion decomposition and linear prufing
  * Three new generators, such as a directed joint degree generator
- Add numpy-38-test.patch, to correct test failure under Python 3.8  
- Update URL, upstream changed to tarballs from zipfiles.

OBS-URL: https://build.opensuse.org/request/show/750202
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-networkx?expand=0&rev=19
2019-11-25 10:23:13 +00:00
Steve Kowalik
e3ecd396ce - Switch to using the %pytest macro.
- Drop incorrect calculated dependency on python33.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=14
2019-11-22 00:41:57 +00:00
Steve Kowalik
93aa5ab2bb - Update to version 2.4
Highlights:
  * Remove deprecated code from 1.x
  * Support for Python 3.8
  * Switched to pytest for testing
  * Last release to support Python 3.5
  * Fifteen new fuctions, including onion decomposition and linear prufing
  * Three new generators, such as a directed joint degree generator
- Add numpy-38-test.patch, to correct test failure under Python 3.8  
- Update URL, upstream changed to tarballs from zipfiles.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-networkx?expand=0&rev=13
2019-11-17 23:57:47 +00:00