Skip to content

Commit

Permalink
Fix Python version info (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
ntfrgl committed Nov 4, 2024
1 parent be40a33 commit 0d40cfa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ The following instructions are intended for users wishing to setup KinDA on thei
own machine. This should not be necessary if using the public AWS AMI, which has
KinDA 0.2 and all of its dependencies pre-installed.

KinDA 0.3+ runs on Python 3.9+, and requires a manual installation of the
KinDA 0.3+ runs on Python 3.10+, and requires a manual installation of the
following packages:
* NUPACK 4.0.1+ (http://www.nupack.org)
* Multistrand 2.2+
Expand Down Expand Up @@ -161,7 +161,7 @@ pairs will override the defaults.

## Version History
### 0.3 (August 2023)
- Migrated to Python 3.9+ and updated the Python package definition.
- Migrated to Python 3.10+ and updated the Python package definition.
- Updated dependencies: Multistrand 2.2, NUPACK 4.0.1, Peppercorn enumerator
1.1, DSDobjects 0.8.
- Created an [Apptainer](https://apptainer.org/) container definition for a
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,11 @@ classifiers = [
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">= 3.9"
requires-python = ">= 3.10"
dependencies = [
"multistrand >= 2.2",
"peppercornenumerator >= 1.1.1",
Expand Down

0 comments on commit 0d40cfa

Please sign in to comment.