-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update max/min python versions (#26)
* update `ci.yml` * typo * update `pyproject.toml` * update base python version * update python version of `pypi-publish.yml` * bump version * typo
- Loading branch information
1 parent
9e9f56f
commit b5cbf5e
Showing
4 changed files
with
17 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,24 @@ | ||
[tool.poetry] | ||
name = "prodigy-lig" | ||
version = "1.1.1" | ||
version = "1.1.2" | ||
description = "Calculate protein-small molecule binding affinities." | ||
authors = ["BonvinLab <[email protected]>"] | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Topic :: Scientific/Engineering :: Chemistry", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
"Intended Audience :: Science/Research", | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.11" | ||
python = "^3.9" | ||
numpy = "^1.26.4" | ||
biopython = "^1.79" | ||
|
||
|