Skip to content

Commit

Permalink
Merge pull request #97 from RECETOX/96-fix-dependencies
Browse files Browse the repository at this point in the history
Fix dependencies (pint and numpy)
  • Loading branch information
xtrojak authored Feb 21, 2023
2 parents 85bacb3 + 1597fcb commit e88af8a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
### Removed

## [0.3.4] - 2023-02-21
### Changed
- pinned pint >=0.17,<0.20 and matchms >=0.14.0,<0.18.0 for dependency issues

## [0.3.3] - 2022-07-22
### Added
### Changed
Expand Down
6 changes: 3 additions & 3 deletions conda/environment-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ channels:
dependencies:
- autopep8
- numpy
- matchms >=0.14.0
- pint >= 0.17
- matchms >=0.14.0,<0.18.0
- pint >=0.17,<0.20
- pip
- pandas
- prospector
Expand All @@ -19,4 +19,4 @@ dependencies:
- build
- twine
- pip:
- -e ..[dev]
- -e ..[dev]
4 changes: 2 additions & 2 deletions conda/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ channels:
- defaults
dependencies:
- numpy
- matchms >=0.14.0
- matchms >=0.14.0,<0.18.0
- pandas
- pint >= 0.17
- pint >=0.17,<0.20
- python >=3.7
- scipy
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@
test_suite="tests",
python_requires='>=3.7',
install_requires=[
"matchms>=0.14.0",
"matchms>=0.14.0,<0.18.0",
"numpy",
"pandas",
"pint>=0.17",
"pint>=0.17,<0.20",
"scipy"
],
extras_require={
Expand Down

0 comments on commit e88af8a

Please sign in to comment.