Skip to content

Commit

Permalink
Merge pull request #94 from iomega/set_max_matchms_version
Browse files Browse the repository at this point in the history
Update setup.py
  • Loading branch information
niekdejonge authored Aug 6, 2024
2 parents d2147cf + 2cac827 commit 7da1872
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Python info
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.1] - 2024-08-06
### Changed
- Set max matchms to 0.26.4
- Set max scipy to 1.10.1

## [0.8.0] - 2022-01-06

### Changed
Expand Down
6 changes: 3 additions & 3 deletions conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "spec2vec" %}
{% set version = "0.8.0" %}
{% set version = "0.8.1" %}

package:
name: {{ name|lower }}
Expand Down Expand Up @@ -37,12 +37,12 @@ requirements:
- setuptools
run:
- gensim >=4.2.0
- matchms >=0.14.0
- matchms >=0.14.0, <=0.26.4
- numba >=0.51
- numpy
- pip
- python >=3.7
- scipy
- scipy <=1.10.1
- tqdm

test:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@
python_requires='>=3.7',
install_requires=[
"gensim >=4.2.0",
"matchms >=0.14.0",
"matchms >=0.14.0,<=0.26.4",
"numba >=0.51",
"numpy",
"scipy",
"scipy <=1.10.1",
"tqdm",
],
extras_require={"dev": ["bump2version",
Expand Down
2 changes: 1 addition & 1 deletion spec2vec/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.8.0'
__version__ = '0.8.1'

0 comments on commit 7da1872

Please sign in to comment.