Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: bump patch 3.0.3 #610

Merged
merged 7 commits into from
Jun 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.0.2
current_version = 3.0.3

[comment]
comment = The contents of this file cannot be merged with that of setup.cfg until https://github.com/c4urself/bump2version/issues/185 is resolved
Expand All @@ -16,6 +16,6 @@ replace = version = "{new_version}"
search = version: "{current_version}"
replace = version: "{new_version}"

[bumpversion:file:requirements-docker.txt]
search = deeprank2==current_version
replace = deeprank2==new_version
[bumpversion:file:env/requirements-docker.txt]
search = deeprank2=={current_version}
replace = deeprank2=={new_version}
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,4 @@ preferred-citation:
volume: 9
title: "DeepRank2: Mining 3D Protein Structures with Geometric Deep
Learning"
version: "3.0.2"
version: "3.0.3"
6 changes: 6 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
include README.md
include env/deeprank2.yml
include CITATION.cff
include LICENSE
include NOTICE
prune tests
1 change: 1 addition & 0 deletions NOTICE
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Copyright 2022, Giulia Crocioni, Dani L. Bodor, The Netherlands eScience Center, Li C. Xue, RadboudUMC
2 changes: 1 addition & 1 deletion deeprank2/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.0.2"
__version__ = "3.0.3"
2 changes: 1 addition & 1 deletion env/requirements-docker.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
deeprank2==3.0.2
deeprank2==3.0.3
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "deeprank2"
version = "3.0.2"
version = "3.0.3"
description = "DeepRank2 is an open-source deep learning framework for data mining of protein-protein interfaces or single-residue missense variants."
readme = "README.md"
requires-python = ">=3.10"
Expand Down Expand Up @@ -60,7 +60,6 @@ source = ["deeprank2"]

[tool.setuptools.packages.find]
include = ["deeprank2*"]
exclude = ["tests", "tests*", "*tests.*", "*tests"]

[tool.setuptools.package-data]
"*" = ["*.xlsx", "*.param", "*.top", "*residue-classes"]
Expand Down
Loading