Skip to content

Commit

Permalink
deleted conda_build_config.yaml (#418)
Browse files Browse the repository at this point in the history
* deleted conda_build_config.yaml
* remove python pinning from recipe
* fix for numpy 2
  • Loading branch information
paskino authored Jun 20, 2024
1 parent ded786f commit 7934860
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## v24.0.1

Build and CI:
- removed python pinning from conda recipe
Bugfix:
- removed deprecated code by numpy v2.0

## v24.0.0

New functionality:
Expand Down
2 changes: 1 addition & 1 deletion Wrappers/Python/ccpi/viewer/utils/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,7 @@ def Write(self):
f.attrs['file_name'] = self._FileName
#f.attrs['viewer_version'] = version
f.attrs['file_time'] = str(datetime.datetime.utcnow())
f.attrs['creator'] = np.string_('io.py')
f.attrs['creator'] = np.bytes_('io.py')
f.attrs['HDF5_Version'] = h5py.version.hdf5_version
f.attrs['h5py_version'] = h5py.version.version

Expand Down
5 changes: 0 additions & 5 deletions Wrappers/Python/conda-recipe/conda_build_config.yaml

This file was deleted.

4 changes: 2 additions & 2 deletions Wrappers/Python/conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ test:

requirements:
build:
- python {{ python }}
- python >=3.7
- vtk

run:
- python {{ python }}
- python >=3.7
- numpy
- vtk
- pyside2
Expand Down

0 comments on commit 7934860

Please sign in to comment.