Skip to content
Snippets Groups Projects
Commit 5fda6758 authored by Duncan Macleod's avatar Duncan Macleod :flag_scotland:
Browse files

Merge branch 'python3.7' into 'master'

Added CI builds for python3.7

See merge request !9
parents 4d4da095 d6b891f2
No related branches found
No related tags found
1 merge request!9Added CI builds for python3.7
Pipeline #
......@@ -10,6 +10,7 @@ stages:
- python -m pip install setuptools
script:
- python -m pip install .
- python -c "import ligo"
- python setup.py test
test:2.7:
......@@ -28,6 +29,10 @@ test:3.6:
<<: *test
image: python:3.6
test:3.7:
<<: *test
image: python:3.7
# -- build ------------------
.build: &build
......
......@@ -19,21 +19,23 @@ from setuptools import setup
version = "1.0.3"
setup(
name = "ligo-common",
version = version,
maintainer = "Duncan Macleod",
maintainer_email = "duncan.macleod@ligo.org",
description = "Empty LIGO modules",
long_description = "Empty module placeholder for other LIGO modules",
license = 'GPLv3',
provides = ['ligo'],
packages = ['ligo'],
classifiers = [
name="ligo-common",
version=version,
maintainer="Duncan Macleod",
maintainer_email="duncan.macleod@ligo.org",
description="Empty LIGO modules",
long_description="Empty module placeholder for other LIGO modules",
license='GPLv3',
provides=['ligo'],
packages=['ligo'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Intended Audience :: Science/Research',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
......@@ -41,9 +43,7 @@ setup(
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Physics',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
]
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment