Skip to content

Commit 59a2897

Browse files
authored
Bumped to version v2.1.2 (#121)
* Bumped to version v2.1.2
1 parent eef70ab commit 59a2897

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import io
22
import os
3+
import platform
34
import sys
45
from shutil import rmtree
56

@@ -25,9 +26,12 @@
2526

2627
# What packages are required for this module to be executed?
2728
REQUIRED = [
28-
'requests', 'websocket-client', 'click', 'schedule', 'objprint', 'colorama', 'termcolor', 'prettytable', 'bs4', 'html2text', 'plyer', 'pyobjus'
29+
'requests', 'websocket-client', 'click', 'schedule', 'objprint', 'colorama', 'termcolor', 'prettytable', 'bs4', 'html2text', 'plyer'
2930
]
3031

32+
if platform.system() != 'Windows':
33+
REQUIRED.append('pyobjus')
34+
3135
# What packages are optional?
3236
EXTRAS = {
3337
# 'fancy feature': ['django'],

src/utils/version.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
# -*- coding: utf-8 -*-
22

3-
__version__ = "2.1.1"
3+
4+
__version__ = "2.1.2"

0 commit comments

Comments
 (0)