python-openTSNE/python-openTSNE.spec
Dirk Mueller cd26b8ccbb Accepting request 951592 from home:bnavigator:branches:devel:languages:python:numeric
- Update to 0.6.1
  * Remove affinites from TSNE construction, allow custom
    affinities and initialization in .fit method. This improves the
    API when dealing with non-tabular data. This is not backwards
    compatible.
  * Add metric="precomputed". This includes the addition of
    openTSNE.nearest_neighbors.PrecomputedDistanceMatrix and
    openTSNE.nearest_neighbors.PrecomputedNeighbors.
  * Add knn_index parameter to openTSNE.affinity classes.
  * Add (less-than-ideal) workaround for pickling Annoy objects.
  * Extend the range of recommended FFTW boxes up to 1000.
  * Remove deprecated openTSNE.nearest_neighbors.BallTree.
  * Remove deprecated openTSNE.callbacks.ErrorLogger.
  * Remove deprecated TSNE.neighbors_method property.
  * Add and set as default negative_gradient_method="auto".
- Skip building on python310: gh#pavlin-policar/openTSNE#205

OBS-URL: https://build.opensuse.org/request/show/951592
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-openTSNE?expand=0&rev=5
2022-02-06 15:34:36 +00:00

77 lines
2.4 KiB
RPMSpec

#
# spec file for package python-openTSNE
#
# Copyright (c) 2022 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python3-%{**}}
%define skip_python2 1
# not compatile with Python 3.10 API: https://github.com/pavlin-policar/openTSNE/issues/205
%define skip_python310 1
Name: python-openTSNE
Version: 0.6.1
Release: 0
Summary: Extensible, parallel implementations of t-SNE
License: BSD-3-Clause
URL: https://github.com/pavlin-policar/openTSNE
# tests are not packaged in the PyPI sdist, use GitHub instead
Source: %{url}/archive/v%{version}.tar.gz#/openTSNE-%{version}-gh.tar.gz
Patch0: python-openTSNE-disable-CPU-autodetection.patch
BuildRequires: %{python_module devel >= 3.7}
BuildRequires: %{python_module numpy-devel >= 1.16.6}
BuildRequires: %{python_module scikit-learn >= 0.20}
BuildRequires: %{python_module scipy}
BuildRequires: %{python_module setuptools}
BuildRequires: c++_compiler
BuildRequires: fftw3-devel
BuildRequires: python-rpm-macros
# SECTION test requirements
BuildRequires: %{python_module pytest}
# /SECTION
BuildRequires: fdupes
Requires: python-numpy >= 1.16.6
Requires: python-scikit-learn >= 0.20
Requires: python-scipy
Suggests: python-hnswlib
Suggests: python-pynndescent
Provides: python-fastTSNE = %{version}
Obsoletes: python-fastTSNE < %{version}
%python_subpackages
%description
Extensible, parallel implementations of t-SNE
%prep
%autosetup -p1 -n openTSNE-%{version}
%build
export CFLAGS="%{optflags}"
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitearch}
%check
%pytest_arch --import-mode append
%files %{python_files}
%doc README.rst
%license LICENSE
%{python_sitearch}/openTSNE
%{python_sitearch}/openTSNE-%{version}*-info
%changelog