Skip to content

Commit

Permalink
Merge branch 'release/v3.2.6' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
StokesMIDE committed Jun 10, 2022
2 parents 4381b88 + a0fff7b commit a2321b3
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 9 deletions.
3 changes: 2 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# -- Project information -----------------------------------------------------

project = 'idelib'
copyright = '2021, Mide Technology Corp.'
copyright = '2022, Mide Technology Corp.'
author = 'David Randall Stokes'

# The short X.Y version
Expand All @@ -42,6 +42,7 @@
'sphinx.ext.doctest',
'sphinx.ext.ifconfig',
'sphinx.ext.githubpages',
'nbsphinx',
]

# Add any paths that contain templates here, relative to this directory.
Expand Down
11 changes: 9 additions & 2 deletions idelib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,19 @@
"""

__author__ = "David Randall Stokes"
__copyright__ = "Copyright (c) 2021 Midé Technology"
__copyright__ = "Copyright (c) 2022 Midé Technology"

__maintainer__ = "Mide Technology"
__maintainer__ = "Midé Technology"
__email__ = "help@mide.com"

__version__ = (3, 2, 4)
__status__ = "Production/Stable"

from .importer import importFile

# Add EBML schema path to ebmlite search paths
import ebmlite

SCHEMA_PATH = "{idelib}/schemata"
if SCHEMA_PATH not in ebmlite.SCHEMA_PATH:
ebmlite.SCHEMA_PATH.insert(0, SCHEMA_PATH)
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ pytest>=4.6
pytest-xdist[psutil]
mock
pytest-cov
sphinx
sphinx==4.2.0
scipy;python_version<"3.10"
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,14 @@
'pytest-xdist[psutil]',
'mock',
'pytest-cov',
'sphinx',
'sphinx==4.2.0',
'scipy;python_version<"3.10"',
]

DOCS_REQUIRES = [
"sphinx",
"pydata-sphinx-theme",
"sphinx==4.2.0",
"pydata-sphinx-theme==0.7.2",
"nbsphinx",
]

EXAMPLE_REQUIRES = [
Expand All @@ -28,7 +29,7 @@

setuptools.setup(
name='idelib',
version='3.2.5',
version='3.2.6',
author='Mide Technology',
author_email='help@mide.com',
description='Python API for accessing IDE data recordings',
Expand Down
1 change: 0 additions & 1 deletion testing/test_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,6 @@ def testConstructor(self):
self.assertEqual(self.dataset.plots, {})
self.assertEqual(self.dataset.recorderConfig, None)
self.assertEqual(self.dataset.recorderInfo, {})
self.assertEqual(self.dataset.schemaVersion, 2)
self.assertEqual(self.dataset.sensors, {})
self.assertEqual(self.dataset.sessions, [])
self.assertEqual(self.dataset.subsets, [])
Expand Down

0 comments on commit a2321b3

Please sign in to comment.