Skip to content

Commit

Permalink
Merge pull request #388 from tcmitchell/release/1.0
Browse files Browse the repository at this point in the history
Bump version to 1.0
  • Loading branch information
tcmitchell authored Feb 17, 2022
2 parents be7a61b + 1860b57 commit 59c52d0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Bryan Bartley and Tom Mitchell'

# The full version, including alpha/beta/rc tags
release = '1.0rc1'
release = '1.0'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion sbol3/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '1.0rc1'
__version__ = '1.0'

from .constants import *
from .config import set_defaults, get_namespace, set_namespace
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup

setup(name='sbol3',
version='1.0rc1',
version='1.0',
description='Python implementation of SBOL 3 standard',
python_requires='>=3.7',
url='https://github.com/SynBioDex/pySBOL3',
Expand All @@ -14,7 +14,7 @@
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',

# Indicate who your project is intended for
'Intended Audience :: Developers',
Expand All @@ -36,7 +36,7 @@
packages=['sbol3'],
package_data={'sbol3': ['rdf/sbol3-shapes.ttl']},
install_requires=[
# Require at least rdflib 6.0.1, and allow newer versions
# Require at least rdflib 6.1.1, and allow newer versions
# of rdflib 6.x
'rdflib>=6.1.1,==6.*',
'python-dateutil~=2.8.2',
Expand Down

0 comments on commit 59c52d0

Please sign in to comment.