Commit 0c553582 authored by Grant, Josh's avatar Grant, Josh
Browse files

Merge branch 'develop' into 'main'

Bump version to 0.1.11

See merge request !10
parents 08d4609d fe7aebe6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -7,9 +7,9 @@ Everything is configurable with environmental variables.

### Installation via pip

Run this command to install version 0.1.10 via pip:
Run this command to install version 0.1.11 (latest) via pip:

`python3 -m pip --no-cache-dir install common==0.1.10 --index-url https://code.ornl.gov/api/v4/projects/10568/packages/pypi/simple  --trusted-host code.ornl.gov`
`python3 -m pip --no-cache-dir install common==0.1.11 --index-url https://code.ornl.gov/api/v4/projects/10568/packages/pypi/simple  --trusted-host code.ornl.gov`

This will install latest (not recommended):

+2 −0
Original line number Diff line number Diff line
@@ -4,6 +4,8 @@

import pymssql
import traceback
import logging


class MSSQLMixin():
    """Provides a convenient API-like interface to Microsoft SQL databases.
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@ import os
from setuptools import setup

# update version information here
_version = '0.1.10'
_version = '0.1.11'

# packages
_packages = ['common', 'common.mixins']