Skip to content

Commit

Permalink
Relax old pandas version constraint (#1467)
Browse files Browse the repository at this point in the history
### Summary

- To address #1466

### How to test
Our existing tests can validate the new pandas version

### Checklist
<!-- Put an 'x' in all the boxes that apply -->
- [ ] I have added unit tests to cover my changes.​
- [ ] I have added integration tests to cover my changes.​
- [ ] I have added the description of my changes into
[CHANGELOG](https://github.com/openvinotoolkit/datumaro/blob/develop/CHANGELOG.md).​
- [ ] I have updated the
[documentation](https://github.com/openvinotoolkit/datumaro/tree/develop/docs)
accordingly

### License

- [ ] I submit _my code changes_ under the same [MIT
License](https://github.com/openvinotoolkit/datumaro/blob/develop/LICENSE)
that covers the project.
  Feel free to contact the maintainers if that's a concern.
- [ ] I have updated the license header for each file (see an example
below).

```python
# Copyright (C) 2024 Intel Corporation
#
# SPDX-License-Identifier: MIT
```

---------

Signed-off-by: Kim, Vinnam <[email protected]>
  • Loading branch information
vinnamkim authored Apr 22, 2024
1 parent 7a72ed1 commit 59ba581
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
(<https://github.com/openvinotoolkit/datumaro/pull/1436>)
- Modify Numpy dependency constraint
(<https://github.com/openvinotoolkit/datumaro/pull/1435>)
- Relax old pandas version constraint
(<https://github.com/openvinotoolkit/datumaro/pull/1467>)

## Apr. 2024 Release 1.6.0
### New features
Expand Down
2 changes: 1 addition & 1 deletion requirements-core.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ scipy
requests

# Sampler
pandas~=1.4.0
pandas>=1.4.0

# OpenVINO
openvino>=2023.2.0
Expand Down

0 comments on commit 59ba581

Please sign in to comment.