Skip to content

Commit

Permalink
Merge pull request #213 from sot/py3-server
Browse files Browse the repository at this point in the history
Small fix for PCAD table generation + SCM version changes
  • Loading branch information
jeanconn authored Jan 9, 2020
2 parents 3fad84e + f5136d6 commit a3fae4d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions .git_archival.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ref-names: $Format:%D$
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.git_archival.txt export-subst
5 changes: 4 additions & 1 deletion mica/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Licensed under a 3-clause BSD style license - see LICENSE.rst
__version__ = '4.19'

import ska_helpers

__version__ = ska_helpers.get_version(__package__)


def test(*args, **kwargs):
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
from setuptools import setup
from pathlib import Path

from mica import __version__

try:
from testr.setup_helper import cmdclass
except ImportError:
Expand All @@ -32,7 +30,8 @@

setup(name='mica',
description='Mica aspects archive',
version=__version__,
use_scm_version=True,
setup_requires=['setuptools_scm', 'setuptools_scm_git_archive'],
author='Jean Connelly',
author_email='jconnelly@cfa.harvard.edu',
license=license,
Expand Down

0 comments on commit a3fae4d

Please sign in to comment.