Skip to content

Commit

Permalink
Merge pull request #195 from shanbay/fix/version
Browse files Browse the repository at this point in the history
fix(version): fix unchanged version tag
  • Loading branch information
fenngwd authored Jun 1, 2021
2 parents a0ae2d5 + 5f87fc1 commit c5cbbd7
Show file tree
Hide file tree
Showing 10 changed files with 2,405 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,5 @@ exclude_paths:
- dist/
- tests/
- docs/
- versioneer.py
- "*/_version.py"
5 changes: 4 additions & 1 deletion .coveragerc
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
[run]
omit = *.tmpl
omit =
*.tmpl
versioneer.py
*/_version.py

[report]
exclude_lines =
Expand Down
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sea/_version.py export-subst
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ include README.md LICENSE requirements.txt
recursive-exclude tests *
recursive-exclude examples *
recursive-exclude benchmark *
include versioneer.py
include sea/_version.py
5 changes: 4 additions & 1 deletion sea/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
from sea.utils import import_string
from sea.local import Proxy

__version__ = "2.2.3"
from ._version import get_versions
__version__ = get_versions()['version']
del get_versions

_app = None


Expand Down
Loading

0 comments on commit c5cbbd7

Please sign in to comment.