Skip to content
This repository has been archived by the owner on Jun 21, 2023. It is now read-only.

Commit

Permalink
merges all algorithms into everything and few changes that missed before
Browse files Browse the repository at this point in the history
  • Loading branch information
alan-stokes committed Aug 23, 2019
2 parents af11533 + c370c1f commit cea2681
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 11 deletions.
10 changes: 5 additions & 5 deletions data_specification/_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!4.0.1"
__version_month__ = "September"
__version_year__ = "2017"
__version_day__ = "25"
__version_name__ = "Riptalon"
__version__ = "1!5.0.1"
__version_month__ = "August"
__version_year__ = "2019"
__version_day__ = "09"
__version_name__ = "Liveware Problem"
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@

six
enum34
SpiNNUtilities >= 1!4.0.1, < 1!5.0.0
SpiNNMachine >= 1!4.0.1, < 1!5.0.0
SpiNNStorageHandlers >= 1!4.0.1, < 1!5.0.0
SpiNNUtilities >= 1!5.0.1, < 1!6.0.0
SpiNNMachine >= 1!5.0.1, < 1!6.0.0
SpiNNStorageHandlers >= 1!5.0.1, < 1!6.0.0
25 changes: 22 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,30 @@
description="Specification of Memory Images",
url="https://github.com/SpiNNakerManchester/DataSpecification",
license="GNU GPLv3.0",
classifiers=[
"Development Status :: 3 - Alpha",

"Intended Audience :: Developers",
"Intended Audience :: Science/Research",

"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",

"Natural Language :: English",

"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",

"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
packages=packages,
package_data=package_data,
install_requires=['SpiNNUtilities >= 1!4.0.1, < 1!5.0.0',
'SpiNNStorageHandlers >= 1!4.0.1, < 1!5.0.0',
'SpiNNMachine >= 1!4.0.1, < 1!5.0.0',
install_requires=['SpiNNUtilities >= 1!5.0.1, < 1!6.0.0',
'SpiNNStorageHandlers >= 1!5.0.1, < 1!6.0.0',
'SpiNNMachine >= 1!5.0.1, < 1!6.0.0',
'six',
'enum34'],
maintainer="SpiNNakerTeam",
Expand Down

0 comments on commit cea2681

Please sign in to comment.