Skip to content

Commit

Permalink
Fix missing time package in setup.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdolinar authored and wdolinar committed Jul 22, 2022
1 parent 0f5a4d4 commit 38e4df8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
python_requires='>=3.10',
name='xmscore',
version=version,
packages=['xms.core', 'xms.core.misc', 'xms.core.filesystem'],
packages=['xms.core', 'xms.core.filesystem', 'xms.core.misc', 'xms.core.time'],
include_package_data=True,
license='BSD 2-Clause License',
description='',
Expand Down
2 changes: 1 addition & 1 deletion _package/xms/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
from . import misc # NOQA: F401
from . import time # NOQA: F401

__version__ = '6.1.0'
__version__ = '6.1.1'

0 comments on commit 38e4df8

Please sign in to comment.