Skip to content

Commit

Permalink
fix package install
Browse files Browse the repository at this point in the history
  • Loading branch information
jessecooper committed Jan 5, 2022
1 parent 70f3664 commit da93341
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ current_version = 1.3.4
commit = True
tag = True

[bumpversion:file:pyetrade/__init__.py]
[bumpversion:file:setup.py]

6 changes: 0 additions & 6 deletions pyetrade/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
"""Init for pyetrade module """

__ALL__ = ["authorization", "accounts"]

__title__ = "pyetrade"
__version__ = "1.3.4"

This comment has been minimized.

Copy link
@lmartinez-mirror

lmartinez-mirror Jan 5, 2022

Removing __version__ breaks the conf.py under docs for generating documentation. Are there plans to fix the conf.py?

This comment has been minimized.

Copy link
@jessecooper

jessecooper via email Jan 6, 2022

Author Owner

This comment has been minimized.

Copy link
@jessecooper

jessecooper Jan 6, 2022

Author Owner

added a action around doc generation

__author__ = "Jesse Cooper"

from . import authorization # noqa: F401
from .authorization import ETradeOAuth, ETradeAccessManager # noqa: F401
from . import accounts # noqa: F401
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
from setuptools import setup, find_packages
from codecs import open
from os import path
from pyetrade import __version__

__version__ = "1.3.4"
here = path.abspath(path.dirname(__file__))

# Get the long description from the README file
Expand Down

0 comments on commit da93341

Please sign in to comment.