Skip to content

Commit

Permalink
bugfix and bump version to 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cosven committed Jun 30, 2019
1 parent a2e1006 commit 7f71f31
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ FeelUOwn 是一个符合 Unix 哲学的跨平台的音乐播放器~
sudo apt-get install python3-pyqt5 # 安装 Python PyQt5 依赖包
sudo apt-get install python3-pyqt5.qtopengl
sudo apt-get install libmpv1 # 安装 libmpv1 系统依赖
pip3 install 'feeluown[battery]>=3.0' --user -i https://pypi.org/simple/
pip3 install 'feeluown[battery]>=3.0.1' --user -i https://pypi.org/simple/
## 为 feeluown 生成图标(Linux 用户)
feeluown-genicon # 生成图标

Expand All @@ -42,7 +42,7 @@ sudo apt-get install fcitx-frontend-qt5 # 使用 fcitx 输入法的用户可能
# macOS 用户安装方法
brew install pyqt
brew install mpv
pip3 install 'feeluown[battery,macos]>=3.0' --user -i https://pypi.org/simple/
pip3 install 'feeluown[battery,macos]>=3.0.1' --user -i https://pypi.org/simple/
```

**使用**
Expand Down
4 changes: 4 additions & 0 deletions changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
---------

3.0.1 (2019-06-30)
"""""""""""""""""""""
- bugfix: 将 pytest-runner 从 setup_requires 移除

3.0 (2019-06-30)
"""""""""""""""""""""
- 修复歌曲播放不能自动 fallback
Expand Down
2 changes: 1 addition & 1 deletion feeluown/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from .consts import LOG_FILE


__version__ = '3.0'
__version__ = '3.0.1'


dict_config = {
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@
'fuo-qqmusic>=0.1.2'],
'macOS': ['pyobjc-framework-Cocoa', 'pyobjc-framework-Quartz']
},
setup_requires=['pytest-runner'],
tests_require=['pytest', 'pytest-cov', 'pytest-asyncio', 'pytest-qt'],
tests_require=['pytest-runner', 'pytest', 'pytest-cov', 'pytest-asyncio', 'pytest-qt'],
entry_points={
'console_scripts': [
"feeluown=feeluown.__main__:main",
Expand Down

0 comments on commit 7f71f31

Please sign in to comment.