Skip to content

Commit

Permalink
Merge pull request #368 from liampauling/release/2.11.1
Browse files Browse the repository at this point in the history
orjson bump
  • Loading branch information
liampauling committed Dec 26, 2020
2 parents 4b4127a + aa7f055 commit 52b5732
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
Release History
---------------

2.11.1 (2020-12-26)
+++++++++++++++++++

**Bug Fixes**

- #366 Parse Error in Setup.py at '_require' (@mlabour)

**Dependencies**

- orjson upgraded to 3.4.6

2.11.0 (2020-12-07)
+++++++++++++++++++

Expand Down
2 changes: 1 addition & 1 deletion betfairlightweight/__version__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__title__ = "betfairlightweight"
__description__ = "Lightweight python wrapper for Betfair API-NG"
__url__ = "https://github.com/liampauling/betfair"
__version__ = "2.11.0"
__version__ = "2.11.1"
__author__ = "Liam Pauling"
__license__ = "MIT"
2 changes: 1 addition & 1 deletion requirements-speed.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
ciso8601==2.1.3
orjson==3.4.5
orjson==3.4.6
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
INSTALL_REQUIRES = f.read().splitlines()

with open(os.path.join(here, "requirements-speed.txt")) as f:
_requires = f.read().splitlines()
extras_require = f.read().splitlines()
EXTRAS_REQUIRE = {
"speed": _requires,
"speed": extras_require,
}

about = {}
Expand Down

0 comments on commit 52b5732

Please sign in to comment.