forked from pool/python-networkx
Accepting request 662476 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/662476 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-networkx?expand=0&rev=15
This commit is contained in:
commit
78b1c7eb55
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:64272ca418972b70a196cb15d9c85a5a6041f09a2f32e0d30c0255f25d458bb1
|
||||
size 1612593
|
3
networkx-2.2.zip
Normal file
3
networkx-2.2.zip
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:45e56f7ab6fe81652fb4bc9f44faddb0e9025f469f602df14e3b2551c2ea5c8b
|
||||
size 1700336
|
@ -1,3 +1,18 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 2 13:55:25 UTC 2019 - Martin Pluskal <mpluskal@suse.com>
|
||||
|
||||
- Update to version 2.2:
|
||||
* Add support for Python 3.7. This is the last release to support
|
||||
Python 2.
|
||||
* Uniform random number generator (RNG) handling which defaults
|
||||
to global RNGs but allows specification of a single RNG for all
|
||||
random numbers in NX.
|
||||
* Improved GraphViews to ease subclassing and remove cyclic
|
||||
references which caused trouble with deepcopy and pickle.
|
||||
* New Graph method G.update(H)
|
||||
- Run tests
|
||||
- Update project url
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Sep 2 17:28:03 UTC 2018 - arun@gmx.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-networkx
|
||||
#
|
||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -12,23 +12,23 @@
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
Name: python-networkx
|
||||
Version: 2.1
|
||||
Version: 2.2
|
||||
Release: 0
|
||||
Summary: Python package for the creation, manipulation,
|
||||
License: BSD-3-Clause
|
||||
Group: Development/Languages/Python
|
||||
URL: http://networkx.lanl.gov
|
||||
URL: https://networkx.github.io/
|
||||
Source: https://files.pythonhosted.org/packages/source/n/networkx/networkx-%{version}.zip
|
||||
BuildRequires: %{python_module PyYAML}
|
||||
BuildRequires: %{python_module decorator >= 3.4.0}
|
||||
BuildRequires: %{python_module matplotlib}
|
||||
BuildRequires: %{python_module numpy-devel}
|
||||
BuildRequires: %{python_module nose >= 0.10.1}
|
||||
BuildRequires: %{python_module pydot}
|
||||
BuildRequires: %{python_module pyparsing}
|
||||
BuildRequires: %{python_module scipy}
|
||||
@ -39,7 +39,6 @@ BuildRequires: unzip
|
||||
Requires: python-decorator >= 3.4.0
|
||||
Recommends: python-PyYAML
|
||||
Recommends: python-matplotlib
|
||||
Recommends: python-numpy
|
||||
Recommends: python-pydot
|
||||
Recommends: python-pygraphviz
|
||||
Recommends: python-pyparsing
|
||||
@ -97,6 +96,9 @@ rm -f _current_flavor
|
||||
popd
|
||||
}
|
||||
|
||||
%check
|
||||
%python_exec setup.py test
|
||||
|
||||
%files %{python_files}
|
||||
%license LICENSE.txt
|
||||
%doc README.rst CONTRIBUTING.rst
|
||||
|
Loading…
x
Reference in New Issue
Block a user