Skip to content

Commit 93fa36d

Browse files
Copilotmichaelchu
andauthored
Release v2.0.2: Modernize dependencies to pandas 2.0+ (#65)
* Initial plan * Bump version to 2.0.2 for new release Co-authored-by: michaelchu <540510+michaelchu@users.noreply.github.com> * Add __version__ to __all__ for public API access Co-authored-by: michaelchu <540510+michaelchu@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: michaelchu <540510+michaelchu@users.noreply.github.com>
1 parent e20d4ea commit 93fa36d

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ You will need Python 3.6 or newer and Pandas 0.23.1 or newer and Numpy 1.14.3 or
2828

2929
### Installation
3030
```
31-
pip install optopsy==2.0.1
31+
pip install optopsy==2.0.2
3232
```
3333

3434
### Example

optopsy/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
__version__ = "2.0.2"
2+
13
from .strategies import (
24
long_calls,
35
long_puts,
@@ -15,6 +17,7 @@
1517
from .datafeeds import csv_data
1618

1719
__all__ = [
20+
"__version__",
1821
"long_calls",
1922
"long_puts",
2023
"short_calls",

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
description="A nimble backtesting and statistics library for options strategies",
66
long_description=open("README.md").read(),
77
long_description_content_type="text/markdown",
8-
version="2.0.1",
8+
version="2.0.2",
99
url="https://github.com/michaelchu/optopsy",
1010
author="Michael Chu",
1111
author_email="mchchu88@gmail.com",

0 commit comments

Comments
 (0)