Skip to content

Commit

Permalink
Remove _meta module to fix issue with flit
Browse files Browse the repository at this point in the history
  • Loading branch information
goodmami committed Mar 22, 2021
1 parent 7c536bd commit 514f0b7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@
copyright = '2020, Michael Wayne Goodman'
author = 'Michael Wayne Goodman'

import wn._meta
import wn

# The short X.Y version
version = '.'.join(wn._meta.__version__.split('.')[:2])
version = '.'.join(wn.__version__.split('.')[:2])
# The full version, including alpha/beta/rc tags
release = wn._meta.__version__
release = wn.__version__

# -- General configuration ---------------------------------------------------

Expand Down
3 changes: 2 additions & 1 deletion wn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
'WnWarning',
)

from wn._meta import __version__
from wn._exceptions import Error, DatabaseError, WnWarning
from wn._config import config # noqa: F401
from wn._add import add, remove
Expand All @@ -49,3 +48,5 @@
ili, ilis, ILI,
Wordnet
)

__version__ = '0.6.2'
2 changes: 0 additions & 2 deletions wn/_meta.py

This file was deleted.

0 comments on commit 514f0b7

Please sign in to comment.