Skip to content

Commit

Permalink
Merge pull request #92 from cytham/v1.8.1-dev
Browse files Browse the repository at this point in the history
v1.8.1
  • Loading branch information
cytham authored Sep 29, 2024
2 parents dcc4070 + 24c7ef4 commit e8d7175
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ NanoVar Changelog
Release Summary:


Version 1.8.1 - Sep 29, 2024
* Patch to restrict NumPy version to <2.0.0 for TF compatibility


Version 1.8.0 - Sep 26, 2024
* Migrated to pyproject.toml and removed setup.py
* Increased default minimum SV read coverage from 2 to 4
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Please note: Current v1.8.0 not compatible with Tensorflow >= 2.16.0, please downgrade to 2.15.1
## Please note: Current v1.8.1 not compatible with Tensorflow >= 2.16.0, please downgrade to 2.15.1

`pip install tensorflow-cpu==2.15.1`

Expand Down Expand Up @@ -209,6 +209,7 @@ pip install nanoinsight
conda install -c bioconda mafft repeatmasker -y
```

Note: If encountered "numpy.dtype size changed" tensorflow error while running NanoVar, ensure numpy version is <2.0.0 (i.e. pip install numpy 1.26.4).

## Documentation
See [wiki](https://github.com/cytham/nanovar/wiki) for more information.
Expand Down
7 changes: 1 addition & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,12 @@
[build-system]
#requires = ["hatchling"]
#build-backend = "hatchling.build"
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

#[tool.hatch.version]
#path = "src/nanovar/version.py"

[project]
name = "nanovar"
dynamic = ["version"]
dependencies = [
"numpy>=1.17.3",
"numpy>=1.17.3, <2.0.0",
"scipy>=1.2.1",
"biopython>=1.82",
"pybedtools>=0.8.2",
Expand Down
2 changes: 1 addition & 1 deletion src/nanovar/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.8.0"
__version__ = "1.8.1"

0 comments on commit e8d7175

Please sign in to comment.