diff --git a/README.md b/README.md index 2c1da69..c9c23b8 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ **Genome Editing Toolkit**
**Since 2022. 08. 19.**
-[![Python](https://img.shields.io/badge/Python-3.7%20%7C%203.8%20%7C%203.9%20%7C%203.10-blue)](https://badge.fury.io/py/genet) +[![Python](https://img.shields.io/badge/Python-3.9%20%7C%203.10-blue)](https://badge.fury.io/py/genet) [![PyPI version](https://badge.fury.io/py/genet.svg)](https://badge.fury.io/py/genet) [![Slack](https://img.shields.io/badge/slack-chat-blueviolet.svg?logo=slack)](https://genethq.slack.com/archives/C04DP727E4E) [![docs](https://img.shields.io/badge/Docs-Tutorials-blue)](https://goosang-yu.github.io/genet/getting_started/) diff --git a/genet/__init__.py b/genet/__init__.py index 8cde4a9..a0bb127 100644 --- a/genet/__init__.py +++ b/genet/__init__.py @@ -7,7 +7,7 @@ # How to release with 2FA accounts # [주의!] 먼저 아래의 version을 변경한다!! -__version__ = '0.15.0' +__version__ = '0.15.1' # hatch build # twine upload --username __token__ dist/* diff --git a/pyproject.toml b/pyproject.toml index 0907586..d4ef2dc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,16 +23,15 @@ keywords = [ ] classifiers = [ "License :: OSI Approved :: MIT License", - "Operating System :: MacOS :: MacOS X", + "Operating System :: Unix", "Operating System :: POSIX", + "Operating System :: MacOS :: MacOS X", "Intended Audience :: Science/Research", "Intended Audience :: Developers", - "Operating System :: Unix", "Topic :: Software Development :: Libraries :: Application Frameworks", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Libraries", "Topic :: Software Development", - "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.9", @@ -42,9 +41,10 @@ dependencies = [ 'pandas', 'regex', 'biopython', - 'tensorflow < 2.10.0', 'torch', - 'protobuf<=3.20.3', + 'tensorflow < 2.10.0 ; platform_system != "Darwin"', + 'tensorflow-macos < 2.10.0 ; platform_system == "Darwin"', + 'protobuf <= 3.20.3', 'silence_tensorflow', 'pyarrow', 'fastparquet',