Skip to content

Commit

Permalink
version 6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Apr 7, 2021
1 parent 7235e51 commit 62d280e
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 23 deletions.
10 changes: 5 additions & 5 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
#
# Copyright (c) 2017-2019 The University of Manchester
# Copyright (c) 2017-2021 The University of Manchester
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -82,16 +82,16 @@

# General information about the project.
project = u'SpiNNFrontEndCommon'
copyright = u'2014-2020'
copyright = u'2014-2021'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = ''
version = '6.0'
# The full version, including alpha/beta/rc tags.
release = ''
release = '6.0.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down Expand Up @@ -303,7 +303,7 @@
epub_title = u'SpiNNFrontEndCommon'
epub_author = u''
epub_publisher = u''
epub_copyright = u'2014-2017'
epub_copyright = u'2014-2021'

# The basename for the epub file. It defaults to the project name.
# epub_basename = u'data_allocation'
Expand Down
12 changes: 6 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

SpiNNUtilities >= 1!5.1.1, < 1!6.0.0
SpiNNMachine >= 1!5.1.1, < 1!6.0.0
SpiNNMan >= 1!5.1.1, < 1!6.0.0
SpiNNaker_PACMAN >= 1!5.1.1, < 1!6.0.0
SpiNNaker_DataSpecification >= 1!5.1.1, < 1!6.0.0
spalloc >= 2.0.2, < 3.0.0
SpiNNUtilities == 1!6.0.0
SpiNNMachine == 1!6.0.0
SpiNNMan == 1!6.0.0
SpiNNaker_PACMAN == 1!6.0.0
SpiNNaker_DataSpecification == 1!6.0.0
spalloc == 1!6.0.0
requests >= 2.4.1
numpy > 1.13, < 1.20; python_version == '3.6'
numpy > 1.13, < 1.21; python_version == '3.7'
Expand Down
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
description="Common SpiNNaker Front end functions",
url="https://github.com/SpiNNakerManchester/SpiNNFrontEndCommon",
classifiers=[
"Development Status :: 3 - Alpha",
"Development Status :: 5 - Production/Stable",

"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
Expand All @@ -72,12 +72,12 @@
],
packages=packages,
package_data=package_data,
install_requires=['SpiNNUtilities >= 1!5.1.1, < 1!6.0.0',
'SpiNNMachine >= 1!5.1.1, < 1!6.0.0',
'SpiNNMan >= 1!5.1.1, < 1!6.0.0',
'SpiNNaker_PACMAN >= 1!5.1.1, < 1!6.0.0',
'SpiNNaker_DataSpecification >= 1!5.1.1, < 1!6.0.0',
'spalloc >= 2.0.2, < 3.0.0',
install_requires=['SpiNNUtilities == 1!6.0.0',
'SpiNNMachine == 1!6.0.0',
'SpiNNMan == 1!6.0.0',
'SpiNNaker_PACMAN == 1!6.0.0',
'SpiNNaker_DataSpecification == 1!6.0.0',
'spalloc == 1!6.0.0',
'requests >= 2.4.1',
"numpy > 1.13, < 1.20; python_version == '3.6'",
"numpy > 1.13, < 1.21; python_version == '3.7'",
Expand Down
10 changes: 5 additions & 5 deletions spinn_front_end_common/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

__version__ = "1!5.1.1"
__version_month__ = "November"
__version_year__ = "2019"
__version_day__ = "15"
__version_name__ = "Liveware Problem"
__version__ = "1!6.0.0"
__version_month__ = "April"
__version_year__ = "2021"
__version_day__ = "9"
__version_name__ = "Now We Try It My Way"

0 comments on commit 62d280e

Please sign in to comment.