Skip to content

Commit

Permalink
Merge pull request #93 from Goosang-Yu/dev_goosang
Browse files Browse the repository at this point in the history
Change pyproject.toml for MacOS
  • Loading branch information
Goosang-Yu authored May 2, 2024
2 parents 0cfd25a + 2479f16 commit c7b9539
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
**Genome Editing Toolkit** </br>
**Since 2022. 08. 19.** </br>

[![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/)
Expand Down
2 changes: 1 addition & 1 deletion genet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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/*
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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',
Expand Down

0 comments on commit c7b9539

Please sign in to comment.