Commit Graph

86 Commits

Author SHA256 Message Date
Tomáš Chvátal
df803b1822 Accepting request 817874 from home:bnavigator:branches:devel:languages:python:numeric
- still open: boo#1148173 gh#numpy/numpy#14438 skip two tests
- clean %check section for updated %pytest_arch
  gh#openSUSE/python-rpm-macros#50

OBS-URL: https://build.opensuse.org/request/show/817874
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=66
2020-06-30 13:24:12 +00:00
ea52e4acc4 - Reorganize check section to pass
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=63
2020-05-13 17:38:52 +00:00
42f5627d37 - Skip three tests which are failing with new GCC10
(gh#numpy/numpy#16212)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=61
2020-05-13 09:14:41 +00:00
Tomáš Chvátal
4555cf9980 Accepting request 802266 from home:apersaud:branches:devel:languages:python:numeric
update to latest version

OBS-URL: https://build.opensuse.org/request/show/802266
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=59
2020-05-09 17:30:39 +00:00
Tomáš Chvátal
b771d963e1 Accepting request 797889 from home:Andreas_Schwab:Factory
- Disable TestF{77,90}ReturnCharacter on big-endian architectures (#11831)

OBS-URL: https://build.opensuse.org/request/show/797889
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=57
2020-04-26 19:29:31 +00:00
Tomáš Chvátal
f76f7bca93 Accepting request 797231 from home:apersaud:branches:devel:languages:python:numeric
update to latest version

OBS-URL: https://build.opensuse.org/request/show/797231
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=56
2020-04-24 17:33:06 +00:00
Tomáš Chvátal
806fb71119 - Do not use alternatives on HPC as it is pain to get it working
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=52
2020-04-07 13:08:50 +00:00
Tomáš Chvátal
4a25d3a4dc - Also still install f2py<PYTHON_MAJOR> that is used by many other
depending software

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=51
2020-04-07 11:56:09 +00:00
3756b8af42 - Use update-alternatives for /usr/bin/f2py
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=50
2020-04-06 21:42:47 +00:00
Tomáš Chvátal
84607317fe Accepting request 789340 from home:apersaud:branches:devel:languages:python:numeric
update to latest version

OBS-URL: https://build.opensuse.org/request/show/789340
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=49
2020-03-28 18:05:09 +00:00
Tomáš Chvátal
136be57a2c Accepting request 761646 from home:TheBlackCat:branches:devel:languages:python:numeric
- update to version 1.18.1
  * The cython random extension test was not using a temporary
    directory for building, resulting in a permission violation.
  * Numpy distutils was appending -std=c99 to all C compiler runs,
    leading to changed behavior and compile problems downstream.
    That flag is now only applied when building numpy C code.

OBS-URL: https://build.opensuse.org/request/show/761646
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=48
2020-01-07 15:36:27 +00:00
Tomáš Chvátal
a95f1ac5e7 Accepting request 761226 from home:TheBlackCat:branches:devel:languages:python:numeric
- update to version 1.18.0:
  + Highlights
    * The C-API for ``numpy.random`` has been defined and documented.
    * Basic infrastructure for linking with 64 bit BLAS and LAPACK libraries.
    * Many documentation improvements.
  + New functions
    * Multivariate hypergeometric distribution added to ``numpy.random``
  + Deprecations
    * ``np.fromfile`` and ``np.fromstring`` will error on bad data
    * Deprecate non-scalar arrays as fill values in ``ma.fill_value``
    * Deprecate ``PyArray_As1D``, ``PyArray_As2D``
    * Deprecate ``np.alen``
    * Deprecate the financial functions
    * The ``axis`` argument to ``numpy.ma.mask_cols`` and ``numpy.ma.mask_row`` is deprecated
  + Expired deprecations
    * ``PyArray_As1D`` and ``PyArray_As2D`` have been removed in favor of
      ``PyArray_AsCArray``
    * ``np.rank`` has been removed. This was deprecated in NumPy 1.10
      and has been replaced by ``np.ndim``.
    * The deprecation of ``expand_dims`` out-of-range axes in 1.13.0 has
      expired.
    * ``PyArray_FromDimsAndDataAndDescr`` and ``PyArray_FromDims`` have been
      removed (they will always raise an error). Use ``PyArray_NewFromDescr``
      and ``PyArray_SimpleNew`` instead.
    * ``numeric.loads``, ``numeric.load``, ``np.ma.dump``,
      ``np.ma.dumps``, ``np.ma.load``, ``np.ma.loads`` are removed,
      use ``pickle`` methods instead
    * ``arrayprint.FloatFormat``, ``arrayprint.LongFloatFormat`` has been removed,
      use ``FloatingFormat`` instead
    * ``arrayprint.ComplexFormat``, ``arrayprint.LongComplexFormat`` has been
      removed, use ``ComplexFloatingFormat`` instead
    * ``arrayprint.StructureFormat`` has been removed, use ``StructureVoidFormat``
      instead
    * ``np.testing.rand`` has been removed. This was deprecated in NumPy 1.11
      and has been replaced by ``np.random.rand``.
    * Class ``SafeEval`` in ``numpy/lib/utils.py`` has been removed.
      This was deprecated in NumPy 1.10. Use ``np.safe_eval`` instead.
    * Remove deprecated support for boolean and empty condition lists in
      ``np.select``
    * Array order only accepts 'C', 'F', 'A', and 'K'. More permissive options
      were deprecated in NumPy 1.11.
    * np.linspace parameter ``num`` must be an integer. Deprecated in NumPy 1.12.
    * UFuncs with multiple outputs must use a tuple for the ``out`` kwarg. This
      finishes a deprecation started in NumPy 1.10.
    * The files ``numpy/testing/decorators.py``, ``numpy/testing/noseclasses.py``
      and ``numpy/testing/nosetester.py`` have been removed.  They were never
      meant to be public (all relevant objects are present in the
      ``numpy.testing`` namespace), and importing them has given a deprecation
      warning since NumPy 1.15.0
  + Compatibility notes
    * `numpy.lib.recfunctions.drop_fields` can no longer return None
    * ``numpy.argmin/argmax/min/max`` returns ``NaT`` if it exists in array
    * ``np.can_cast(np.uint64, np.timedelta64, casting='safe')`` is now ``False``
    * Changed random variate stream from ``numpy.random.Generator.integers``
    * Add more ufunc loops for ``datetime64``, ``timedelta64``
    * Moved modules in ``numpy.random``
  + C API changes
    * ``PyDataType_ISUNSIZED(descr)`` now returns False for structured datatypes
  + New Features
    * Add our own ``*.pxd`` cython import file
    * A tuple of axes can now be input to ``expand_dims``
    * Support for 64-bit OpenBLAS
    * Add ``--f2cmap`` option to F2PY
  + Improvements
    * Different C numeric types of the same size have unique names
    * ``argwhere`` now produces a consistent result on 0d arrays
    * Add ``axis`` argument for ``random.permutation`` and ``random.shuffle``
    * ``method`` keyword argument for ``np.random.multivariate_normal``
    * Add complex number support for ``numpy.fromstring``
    * ``numpy.unique`` has consistent axes order when ``axis`` is not None
    * ``numpy.matmul`` with boolean output now converts to boolean values
    * ``numpy.random.randint`` produced incorrect value when the range was ``2**32``
    * Add complex number support for ``numpy.fromfile``
    * ``std=c99`` added if compiler is named ``gcc``
  + Changes
    * ``NaT`` now sorts to the end of arrays
    * Incorrect ``threshold`` in ``np.set_printoptions`` raises ``TypeError`` or ``ValueError``
    * Warn when saving a dtype with metadata
    * ``numpy.distutils`` append behavior changed for LDFLAGS and similar
    * Remove ``numpy.random.entropy`` without a deprecation
    * Add options to quiet build configuration and build with ``-Werror``

OBS-URL: https://build.opensuse.org/request/show/761226
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=47
2020-01-07 06:39:50 +00:00
Tomáš Chvátal
90c21abf98 Accepting request 749079 from home:apersaud:branches:devel:languages:python:numeric
update to latest version

OBS-URL: https://build.opensuse.org/request/show/749079
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=45
2019-11-17 07:46:10 +00:00
Tomáš Chvátal
c3b090eec6 Accepting request 743807 from home:Andreas_Schwab:Factory
- riscv.patch: Remove obsolete patch

OBS-URL: https://build.opensuse.org/request/show/743807
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=43
2019-10-29 10:44:34 +00:00
Tomáš Chvátal
4fd678ba61 Accepting request 741245 from home:apersaud:branches:devel:languages:python:numeric
update to latest version

OBS-URL: https://build.opensuse.org/request/show/741245
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=41
2019-10-21 07:22:42 +00:00
Tomáš Chvátal
53d663ab65 * s390x.patch
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=39
2019-10-03 13:58:12 +00:00
Tomáš Chvátal
6695e2c226 - Force cythonization to ensure build under different versions of
python

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=38
2019-10-03 13:54:26 +00:00
Tomáš Chvátal
793bbb5e9d Accepting request 733462 from home:azouhr:branches:devel:languages:python:numeric
disable two tests for s390x to make the package build

OBS-URL: https://build.opensuse.org/request/show/733462
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=37
2019-09-26 19:14:12 +00:00
Tomáš Chvátal
3e5c75258d - Update to 1.17.2:
* #14418: BUG: Fix aradixsort indirect indexing.
  * #14420: DOC: Fix a minor typo in dispatch documentation.
  * #14421: BUG: test, fix regression in converting to ctypes
  * #14430: BUG: Do not show Override module in private error classes.
  * #14432: BUG: Fixed maximum relative error reporting in assert_allclose.
  * #14433: BUG: Fix uint-overflow if padding with linear_ramp and negative...
  * #14436: BUG: Update 1.17.x with 1.18.0-dev pocketfft.py.
- Add dep on pytest-xdist and use threaded tests execution
  shaving around 400s on local build

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=36
2019-09-26 08:39:18 +00:00
Tomáš Chvátal
4e98884891 Accepting request 728725 from home:michel_mno:branches:devel:languages:python:numeric
- as bypass boo#1148173 ignore %check error for ppc64/ppc64le

OBS-URL: https://build.opensuse.org/request/show/728725
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=34
2019-09-09 07:22:32 +00:00
Tomáš Chvátal
3af9bf4445 Accepting request 726784 from home:TheBlackCat:branches:devel:languages:python:numeric
Update to version 1.17.1

OBS-URL: https://build.opensuse.org/request/show/726784
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=32
2019-08-29 02:16:46 +00:00
Tomáš Chvátal
90605da46c Accepting request 719304 from home:TheBlackCat:branches:devel:languages:python:numeric
- Update to version 1.17.0
  Highlights
  * A new extensible random module along with four selectable random number
    generators and improved seeding designed for use in parallel processes has
    been added. The currently available bit generators are MT19937, PCG64,
    Philox, and SFC64.
  * NumPy's FFT implementation was changed from fftpack to pocketfft, resulting
    in faster, more accurate transforms and better handling of datasets of
    prime length.
  * New radix sort and timsort sorting methods. It is currently not possible to
    choose which will be used, but they are hardwired to the datatype and used
    when either ``stable`` or ``mergesort`` is passed as the method. 
  * Overriding numpy functions is now possible by default.
- Python 2 support has been dropped
- Rebase numpy-buildfix.patch

OBS-URL: https://build.opensuse.org/request/show/719304
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=30
2019-07-29 08:45:51 +00:00
Tomáš Chvátal
58be9ab6dc Accepting request 706486 from home:marxin:branches:devel:languages:python:numeric
- Disable LTO in order to address boo#1136831.

OBS-URL: https://build.opensuse.org/request/show/706486
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=28
2019-05-30 08:39:20 +00:00
Tomáš Chvátal
c9bf903fb6 Accepting request 706141 from home:TheBlackCat:branches:devel:languages:python:numeric
- update to version 1.16.3
  * The NumPy 1.16.4 release fixes bugs reported against the 1.16.3 release, and
    also backports several enhancements from master that seem appropriate for a
    release series that is the last to support Python 2.7.
  + New deprecations
    * Writeable flag of C-API wrapped arrays
  + Compatibility notes
    * Potential changes to the random stream

OBS-URL: https://build.opensuse.org/request/show/706141
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=27
2019-05-30 07:46:38 +00:00
Tomáš Chvátal
5e1238720c Accepting request 703311 from system:homeautomation:home-assistant
- update to version 1.16.3
  NumPy 1.16.3 Release Notes:
  The NumPy 1.16.3 release fixes bugs reported against the 1.16.2 release, and
  also backports several enhancements from master that seem appropriate for a
  release series that is the last to support Python 2.7. The wheels on PyPI are
  linked with OpenBLAS v0.3.4+, which should fix the known threading issues
  found in previous OpenBLAS versions.
  Downstream developers building this release should use Cython >= 0.29.2 and,
  if using OpenBLAS, OpenBLAS > v0.3.4.
  The most noticeable change in this release is that unpickling object arrays
  when loading *.npy or *.npz files now requires an explicit opt-in.
  This backwards incompatible change was made in response to
  CVE-2019-6446 <https://nvd.nist.gov/vuln/detail/CVE-2019-6446>_.
  Compatibility notes
  Unpickling while loading requires explicit opt-in
  The functions np.load, and np.lib.format.read_array take an
  allow_pickle keyword which now defaults to False in response to
  CVE-2019-6446 <https://nvd.nist.gov/vuln/detail/CVE-2019-6446>_.
  Improvements
  Covariance in random.mvnormal cast to double
  This should make the tolerance used when checking the singular values of the
  covariance matrix more meaningful.
  Changes
  __array_interface__ offset now works as documented
  The interface may use an offset value that was previously mistakenly
  ignored.

OBS-URL: https://build.opensuse.org/request/show/703311
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=25
2019-05-20 07:46:15 +00:00
6630543ee6 Accepting request 689877 from home:comurphy:branches:devel:languages:python:backports
- Fix python sitearch paths for SLE_12_SP3/4

OBS-URL: https://build.opensuse.org/request/show/689877
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=23
2019-04-01 10:17:32 +00:00
Tomáš Chvátal
4ed8230673 Accepting request 688181 from home:tbechtold:branches:devel:languages:python:numeric
- add fix-py34-tests.patch to fix build with python3.4 from SLE12SP4

OBS-URL: https://build.opensuse.org/request/show/688181
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=21
2019-03-25 10:31:44 +00:00
23b173f379 Accepting request 686967 from home:mcepl:branches:devel:languages:python:numeric
- Update to 1.16.2:
  - Primarily focused on fixing on Windows-related bugs
  - regression fix correcting signed zeros produced by divmod

OBS-URL: https://build.opensuse.org/request/show/686967
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=19
2019-03-20 14:10:04 +00:00
d50624b717 Accepting request 680656 from home:mcepl:branches:devel:languages:python:numeric
- Use direct number in Version: tag.

OBS-URL: https://build.opensuse.org/request/show/680656
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=17
2019-03-01 23:25:19 +00:00
Tomáš Chvátal
811ebadef3 - Do not bother with standard flavor, just make it default
- Execute the tests only on standard package for now not hpc variants

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=15
2019-02-20 10:57:42 +00:00
Tomáš Chvátal
13579fa2be - Use %license macro
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=14
2019-02-20 09:29:00 +00:00
Tomáš Chvátal
9d89b4d70a - Add constraints for testsuite to not run out of mem/disk space
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=13
2019-02-20 09:28:32 +00:00
Tomáš Chvátal
657c0bc1ce - Enable testsuite
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=11
2019-02-19 12:53:12 +00:00
Tomáš Chvátal
76b54386b3 Accepting request 671996 from home:TheBlackCat:branches:devel:languages:python:numeric
- Update to version 1.16.1
  Changes documented in release notes:
  https://github.com/numpy/numpy/blob/master/doc/release/1.16.1-notes.rst
- Update to version 1.16.0
  Changes documented in release notes:
  https://github.com/numpy/numpy/blob/master/doc/release/1.16.0-notes.rst

OBS-URL: https://build.opensuse.org/request/show/671996
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=9
2019-02-06 13:11:58 +00:00
18d76d858b Accepting request 660781 from home:TheBlackCat:branches:devel:languages:python:numeric
- Update to version 1.15.4
  Changes documented in release notes:
  https://github.com/numpy/numpy/blob/master/doc/release/1.15.4-notes.rst

OBS-URL: https://build.opensuse.org/request/show/660781
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=7
2018-12-24 09:05:24 +00:00
Tomáš Chvátal
58fcc5e6c7 Accepting request 644949 from home:TheBlackCat:branches:devel:languages:python:numeric
- Update to version 1.15.3
  Changes documented in release notes:
  https://github.com/numpy/numpy/blob/master/doc/release/1.15.2-notes.rst

OBS-URL: https://build.opensuse.org/request/show/644949
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=5
2018-10-27 14:19:49 +00:00
Dominique Leuenberger
0782c0a445 Accepting request 638249 from devel:languages:python:numeric
- Update to version 1.15.2
  Changes documented in release notes:
  https://github.com/numpy/numpy/blob/master/doc/release/1.15.2-notes.rst
- Update to version 1.15.1
  Changes documented in release notes:
  https://github.com/numpy/numpy/blob/master/doc/release/1.15.1-notes.rst
- Update to version 1.15.0
  Changes documented in release notes:
  https://github.com/numpy/numpy/blob/master/doc/release/1.15.0-notes.rst
- Update to version 1.14.6
  Changes documented in release notes:
  https://github.com/numpy/numpy/blob/master/doc/release/1.14.6-notes.rst
- Rebase numpy-1.9.0-remove-__declspec.patch
- Rebase riscv.patch

OBS-URL: https://build.opensuse.org/request/show/638249
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-numpy?expand=0&rev=70
2018-10-02 17:44:22 +00:00
Yuchen Lin
bf2f4604de Accepting request 616702 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/616702
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-numpy?expand=0&rev=69
2018-06-18 11:48:47 +00:00
Dominique Leuenberger
6be798bbfa Accepting request 606473 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/606473
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-numpy?expand=0&rev=68
2018-05-16 09:21:50 +00:00
Dominique Leuenberger
8aa69f6956 Accepting request 602335 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/602335
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-numpy?expand=0&rev=67
2018-05-06 12:55:40 +00:00
Dominique Leuenberger
39280035c5 Accepting request 576265 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/576265
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-numpy?expand=0&rev=66
2018-02-16 20:40:19 +00:00
Dominique Leuenberger
17a9f05a74 Accepting request 574786 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/574786
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-numpy?expand=0&rev=65
2018-02-13 09:26:18 +00:00
Dominique Leuenberger
86f4ebb8ed Accepting request 573260 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/573260
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-numpy?expand=0&rev=64
2018-02-09 14:44:14 +00:00
Dominique Leuenberger
a9db530e5e Accepting request 567770 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/567770
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-numpy?expand=0&rev=63
2018-01-21 14:48:24 +00:00
Dominique Leuenberger
e22abeab4d Accepting request 563390 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/563390
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-numpy?expand=0&rev=62
2018-01-16 08:26:17 +00:00
Dominique Leuenberger
ef8b7cc7fa Accepting request 544081 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/544081
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-numpy?expand=0&rev=61
2017-11-23 08:34:11 +00:00
Dominique Leuenberger
4fa9108c00 Accepting request 541237 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/541237
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-numpy?expand=0&rev=60
2017-11-17 09:36:10 +00:00
Dominique Leuenberger
24df67b9a4 Accepting request 539352 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/539352
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-numpy?expand=0&rev=59
2017-11-09 12:53:36 +00:00
Dominique Leuenberger
560a227704 Accepting request 535006 from devel:languages:python
1

OBS-URL: https://build.opensuse.org/request/show/535006
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-numpy?expand=0&rev=58
2017-10-20 12:38:55 +00:00
Dominique Leuenberger
c709c31ae8 Accepting request 530444 from devel:languages:python
1

OBS-URL: https://build.opensuse.org/request/show/530444
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-numpy?expand=0&rev=57
2017-10-07 15:47:16 +00:00