Skip to content

Commit

Permalink
Update version management for micro relase
Browse files Browse the repository at this point in the history
  • Loading branch information
notmatthancock committed Dec 21, 2021
1 parent 1e5aba1 commit eb9cc8e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pylidc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"""
from __future__ import print_function as _pf

__version__ = '0.2.2'
__version__ = '0.2.3'

# Hidden stuff.
import os as _os
Expand Down
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[metadata]
version = attr: pylidc.__version__

[bdist_wheel]
universal = 1
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
from os import path
from setuptools import setup, find_packages
from pylidc import __version__


def main():
setup(
name='pylidc',
version=__version__,
description='A library for working with the LIDC dataset.',
long_description='',
url='https://github.com/pylidc/pylidc',
Expand Down Expand Up @@ -39,5 +36,6 @@ def main():
}
)


if __name__ == '__main__':
main()

0 comments on commit eb9cc8e

Please sign in to comment.