Up to [cvs.NetBSD.org] / pkgsrc / math / py-netCDF4
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.21 / (download) - annotate - [select for diffs], Wed Oct 26 10:31:40 2022 UTC (3 months, 1 week ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2022Q4-base,
pkgsrc-2022Q4,
HEAD
Changes since 1.20: +2 -2
lines
Diff to previous 1.20 (colored)
*: bump PKGREVISION for libunistring shlib major bump
Revision 1.20 / (download) - annotate - [select for diffs], Fri Apr 15 11:37:46 2022 UTC (9 months, 3 weeks ago) by nia
Branch: MAIN
CVS Tags: pkgsrc-2022Q3-base,
pkgsrc-2022Q3,
pkgsrc-2022Q2-base,
pkgsrc-2022Q2
Changes since 1.19: +2 -2
lines
Diff to previous 1.19 (colored)
*: Mark various packages incompatible with Python 3.7 due to numpy
Revision 1.19 / (download) - annotate - [select for diffs], Wed Jan 5 15:41:14 2022 UTC (13 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2022Q1-base,
pkgsrc-2022Q1
Changes since 1.18: +4 -2
lines
Diff to previous 1.18 (colored)
python: egg.mk: add USE_PKG_RESOURCES flag This flag should be set for packages that import pkg_resources and thus need setuptools after the build step. Set this flag for packages that need it and bump PKGREVISION.
Revision 1.18 / (download) - annotate - [select for diffs], Tue Jan 4 20:54:14 2022 UTC (13 months ago) by wiz
Branch: MAIN
Changes since 1.17: +2 -1
lines
Diff to previous 1.17 (colored)
*: bump PKGREVISION for egg.mk users They now have a tool dependency on py-setuptools instead of a DEPENDS
Revision 1.17 / (download) - annotate - [select for diffs], Thu Dec 30 13:05:36 2021 UTC (13 months, 1 week ago) by adam
Branch: MAIN
Changes since 1.16: +2 -2
lines
Diff to previous 1.16 (colored)
Forget about Python 3.6
Revision 1.16 / (download) - annotate - [select for diffs], Thu Dec 16 09:53:28 2021 UTC (13 months, 3 weeks ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2021Q4-base,
pkgsrc-2021Q4
Changes since 1.15: +2 -3
lines
Diff to previous 1.15 (colored)
py-netCDF4: updated to 1.5.8 version 1.5.8 * Fix Enum bug (issue 1128): the enum_dict member of an EnumType read from a file contains invalid values when the enum is large enough (more than 127 or 255 members). * Binary wheels for aarch64 and python 3.10. version 1.5.7 * don't try to mask vlens with default _FillValue, since vlens don't have a default _FillValue. This gets rid of numpy DeprecationWarning (issue 1099). * update docs to reflect the fact that a variable must be in collective mode before writing compressed data to it in parallel. Added a test for this (examples/mpi_example_compressed.py). * Fix OverflowError when dimension sizes become greater than 2**32-1 elements on Windows (Issue 1112). * Don't return masked arrays for vlens (only for primitive and enum types
Revision 1.15 / (download) - annotate - [select for diffs], Wed Dec 8 16:05:35 2021 UTC (14 months ago) by adam
Branch: MAIN
Changes since 1.14: +2 -2
lines
Diff to previous 1.14 (colored)
revbump for icu and libffi
Revision 1.14 / (download) - annotate - [select for diffs], Mon Dec 6 15:31:28 2021 UTC (14 months ago) by wiz
Branch: MAIN
Changes since 1.13: +2 -2
lines
Diff to previous 1.13 (colored)
py-netCDF4: mark as not for python 2.x This depends on numpy which does not support python 2.x. Not sure why this doesn't break bulk builds.
Revision 1.13 / (download) - annotate - [select for diffs], Wed Sep 29 19:00:58 2021 UTC (16 months, 1 week ago) by adam
Branch: MAIN
Changes since 1.12: +2 -1
lines
Diff to previous 1.12 (colored)
revbump for boost-libs
Revision 1.12 / (download) - annotate - [select for diffs], Tue Jun 29 08:42:01 2021 UTC (19 months, 1 week ago) by nia
Branch: MAIN
CVS Tags: pkgsrc-2021Q3-base,
pkgsrc-2021Q3
Changes since 1.11: +3 -1
lines
Diff to previous 1.11 (colored)
py-numpy: "Python version >= 3.7 required."
Revision 1.11 / (download) - annotate - [select for diffs], Fri May 7 18:31:59 2021 UTC (21 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2021Q2-base,
pkgsrc-2021Q2
Changes since 1.10: +2 -3
lines
Diff to previous 1.10 (colored)
py-netCDF4: updated to 1.5.6 version 1.5.6 (tag v1.5.6rel) ============================= * move CI/CD tests from travis/appveyor to Github Actions. * move netCDF4 dir under src so module can be imported in source directory. * change numpy.bool to numpy.bool_ and numpy.float to numpy.float_ (float and bool are deprecated in numpy 1.20) * clean up docstrings so that they work with latest pdoc. * update cython numpy API to remove deprecation warnings. * Add "fromcdl" and "tocdl" Dataset methods for import/export of CDL via ncdump/ncgen called externally via the subprocess module. * remove python 2.7 support. * broadcast data (if possible)to conform to variable shape when writing to a slice version 1.5.5.1 (tag v1.5.5.1rel) ================================= * rebuild binary wheels for linux and OSX to link netcdf-c 4.7.4 and hdf5 1.12.0. version 1.5.5 (tag v1.5.5rel) ============================= * have setup.py always try use nc-config first to find paths to netcdf and hdf5 libraries and headers. Don't use pkg-config to find HDF5 if HDF5 env vars are set (or read from setup.cfg). * Change MIT license text to standard OSI wording. version 1.5.4 (tag v1.5.4rel) ============================= * fix printing of variable objects for variables that end with the letter 'u' * make sure root group has 'name' attribute. * add the ability to pack vlen floats to integers using scale_factor/add_offset * use len instead of deprecated numpy.alen * check size on valid_range instead of using len. * add `set_chunk_cache/get_chunk_cache` module functions to reset the default chunk cache sizes before opening a Dataset. * replace use of numpy's deprecated tostring() method with tobytes() * bump minimal numpy version to 1.9 (first version to have tobytes()).
Revision 1.10 / (download) - annotate - [select for diffs], Wed Apr 21 13:25:00 2021 UTC (21 months, 2 weeks ago) by adam
Branch: MAIN
Changes since 1.9: +2 -2
lines
Diff to previous 1.9 (colored)
revbump for boost-libs
Revision 1.9 / (download) - annotate - [select for diffs], Mon Oct 12 21:52:03 2020 UTC (2 years, 3 months ago) by bacon
Branch: MAIN
CVS Tags: pkgsrc-2021Q1-base,
pkgsrc-2021Q1,
pkgsrc-2020Q4-base,
pkgsrc-2020Q4
Changes since 1.8: +2 -1
lines
Diff to previous 1.8 (colored)
math/blas, math/lapack: Install interchangeable BLAS system Install the new interchangeable BLAS system created by Thomas Orgis, currently supporting Netlib BLAS/LAPACK, OpenBLAS, cblas, lapacke, and Apple's Accelerate.framework. This system allows the user to select any BLAS implementation without modifying packages or using package options, by setting PKGSRC_BLAS_TYPES in mk.conf. See mk/blas.buildlink3.mk for details. This commit should not alter behavior of existing packages as the system defaults to Netlib BLAS/LAPACK, which until now has been the only supported implementation. Details: Add new mk/blas.buildlink3.mk for inclusion in dependent packages Install compatible Netlib math/blas and math/lapack packages Update math/blas and math/lapack MAINTAINER approved by adam@ OpenBLAS, cblas, and lapacke will follow in separate commits Update direct dependents to use mk/blas.buildlink3.mk Perform recursive revbump
Revision 1.8 / (download) - annotate - [select for diffs], Wed Jul 1 15:59:40 2020 UTC (2 years, 7 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2020Q3-base,
pkgsrc-2020Q3
Changes since 1.7: +6 -5
lines
Diff to previous 1.7 (colored)
py-netCDF4: updated to 1.5.3 version 1.5.3 * make sure arrays are masked that are not filled when auto_fill is off * python 3.8 binary wheels
Revision 1.7 / (download) - annotate - [select for diffs], Fri May 22 10:56:21 2020 UTC (2 years, 8 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2020Q2-base,
pkgsrc-2020Q2
Changes since 1.6: +2 -2
lines
Diff to previous 1.6 (colored)
revbump after updating security/nettle
Revision 1.6 / (download) - annotate - [select for diffs], Wed May 6 14:04:49 2020 UTC (2 years, 9 months ago) by adam
Branch: MAIN
Changes since 1.5: +2 -2
lines
Diff to previous 1.5 (colored)
revbump after boost update
Revision 1.5 / (download) - annotate - [select for diffs], Sun Mar 8 16:50:29 2020 UTC (2 years, 11 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2020Q1-base,
pkgsrc-2020Q1
Changes since 1.4: +2 -2
lines
Diff to previous 1.4 (colored)
*: recursive bump for libffi
Revision 1.4 / (download) - annotate - [select for diffs], Sat Jan 18 23:32:52 2020 UTC (3 years ago) by rillig
Branch: MAIN
Changes since 1.3: +2 -2
lines
Diff to previous 1.3 (colored)
all: migrate several HOMEPAGEs to https pkglint --only "https instead of http" -r -F With manual adjustments afterwards since pkglint 19.4.4 fixed a few indentations in unrelated lines. This mainly affects projects hosted at SourceForce, as well as freedesktop.org, CTAN and GNU.
Revision 1.3 / (download) - annotate - [select for diffs], Sat Jan 18 21:49:57 2020 UTC (3 years ago) by jperkin
Branch: MAIN
Changes since 1.2: +2 -2
lines
Diff to previous 1.2 (colored)
*: Recursive revision bump for openssl 1.1.1.
Revision 1.2 / (download) - annotate - [select for diffs], Sun Jan 12 20:20:31 2020 UTC (3 years ago) by ryoon
Branch: MAIN
Changes since 1.1: +2 -1
lines
Diff to previous 1.1 (colored)
*: Recursive revbump from devel/boost-libs
Revision 1.1 / (download) - annotate - [select for diffs], Wed Oct 2 21:14:42 2019 UTC (3 years, 4 months ago) by minskim
Branch: MAIN
CVS Tags: pkgsrc-2019Q4-base,
pkgsrc-2019Q4
math/py-netCDF4: Import version 1.5.2 netCDF version 4 has many features not found in earlier versions of the library, such as hierarchical groups, zlib compression, multiple unlimited dimensions, and new data types. It is implemented on top of HDF5. This module implements most of the new features, and can read and write netCDF files compatible with older versions of the library. The API is modelled after Scientific.IO.NetCDF, and should be familiar to users of that module. Packaged by Kamel Ibn Aziz Derouiche and updated by wiz@ and me.