Skip to content

Commit

Permalink
deps: add lenient versions to conda environment file and setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
florianzwagemaker committed Sep 7, 2023
1 parent c349ced commit 6ccd2c7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ channels:
- defaults
dependencies:
- python>=3.10
- biopython=1.79
- rich=12
- biopython>=1.79
- rich==13.*
- pandas
- python-magic
- python-magic==0.4.*
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
long_description_content_type="text/markdown",
python_requires=">=3.10",
packages=find_packages(),
install_requires=["biopython", "pandas", "rich", "python-magic"],
install_requires=["biopython>=1.79", "pandas", "rich==13.*", "python-magic==0.4.*"],
entry_points={
"console_scripts": [
"aminoextract = AminoExtract.__main__:main",
Expand Down

0 comments on commit 6ccd2c7

Please sign in to comment.