Skip to content
This repository was archived by the owner on Oct 13, 2023. It is now read-only.

Commit 018fa7b

Browse files
committed
Disabled cfscrape version requirement.
1 parent 4f53beb commit 018fa7b

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -417,6 +417,9 @@ if __name__ == "__main__":
417417
main()
418418
```
419419
# Change log
420+
0.0.5.1
421+
* Disabled cfscrape version requirement.
422+
420423
0.0.5
421424
* Fixed [Issue #9](https://github.com/slazarov/python-bittrex-websocket/issues/9) relating to `subscribe_to_orderbook_update` handling in internal method `_on_tick_update`
422425
* Added custom logger as per [PR #10](https://github.com/slazarov/python-bittrex-websocket/issues/10) and [Issue #8](https://github.com/slazarov/python-bittrex-websocket/issues/8) in order to avoid conflicts with other `basicConfig` setups

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cfscrape==1.9.0
1+
cfscrape
22
signalr-client==0.0.7
33
requests[security]==2.18.4
44
Events==0.3

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
install_requires = \
66
[
7-
'cfscrape==1.9.0',
7+
'cfscrape',
88
'signalr-client==0.0.7',
99
'requests[security]==2.18.4',
1010
'Events==0.3',
@@ -13,7 +13,7 @@
1313

1414
setup(
1515
name='bittrex_websocket',
16-
version='0.0.5',
16+
version='0.0.5.1',
1717
author='Stanislav Lazarov',
1818
author_email='s.a.lazarov@gmail.com',
1919
license='MIT',

0 commit comments

Comments
 (0)