File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1818# -- Project information -----------------------------------------------------
1919
2020project = 'pySBOL2'
21- copyright = '2020 , Raytheon BBN Technologies'
21+ copyright = '2021 , Raytheon BBN Technologies'
2222author = '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 ---------------------------------------------------
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 11from setuptools import setup
22
33setup (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' ,
Original file line number Diff line number Diff 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 ]))
You can’t perform that action at this time.
0 commit comments