Skip to content

Commit 127b92d

Browse files
authored
Merge pull request #407 from tcmitchell/bump-version
Bump version to 1.4
2 parents 5636f5f + 87f6175 commit 127b92d

4 files changed

Lines changed: 5 additions & 10 deletions

File tree

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
# -- Project information -----------------------------------------------------
1919

2020
project = 'pySBOL2'
21-
copyright = '2020, Raytheon BBN Technologies'
21+
copyright = '2021, Raytheon BBN Technologies'
2222
author = 'Bryan Bartley and Tom Mitchell'
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = '1.3'
25+
release = '1.4'
2626

2727

2828
# -- General configuration ---------------------------------------------------

sbol2/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '1.3'
1+
__version__ = '1.4'
22

33
# Anything imported here is part of the public API. Limit what gets
44
# imported to only those things that are actually needed.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
from setuptools import setup
22

33
setup(name='sbol2',
4-
version='1.3',
4+
version='1.4',
55
description='Pure Python implementation of SBOL 2 standard',
6-
python_requires='>=3.4',
6+
python_requires='>=3.7',
77
url='https://github.com/SynBioDex/pySBOL2',
88
author='Bryan Bartley',
99
author_email='editors@sbolstandard.org',

test/test_partshop.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -273,11 +273,6 @@ def test_search_general(self):
273273
results = sbh.search("NAND")
274274
# The response is a list
275275
self.assertIsInstance(results, list)
276-
# There are 18 items in the list as of 2021-Apr-14
277-
# expected = 18
278-
# There are 25 items in the list as of 2021-Sep-10
279-
expected = 25
280-
self.assertEqual(expected, len(results))
281276
# The response items are all of type Identified
282277
self.assertTrue(all([isinstance(x, sbol2.Identified)
283278
for x in results]))

0 commit comments

Comments
 (0)