Skip to content

Commit

Permalink
Update package requirements to fix installation conflicts with Brian …
Browse files Browse the repository at this point in the history
…2.6.0
  • Loading branch information
mpgl committed Jun 5, 2024
1 parent 7389b02 commit 227ab56
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions docs_sphinx/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Release notes
=============

Version 2.1.3
-------------
* Changed package requirements to fix installation conflicts with Brian 2.6.0.

Version 2.1.2
-------------
* Fixed a bug that could cause the wrong estimation of a somatic
Expand Down
2 changes: 1 addition & 1 deletion docs_sphinx/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
project = 'Dendrify'
copyright = '2024, Michalis Pagkalos'
author = 'Michalis Pagkalos'
release = '2.1.2'
release = '2.1.3'


# -- General configuration -----------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import find_packages, setup

VERSION = '2.1.2'
VERSION = '2.1.3'
DESCRIPTION = 'A package for adding dendrites to SNNs'
with open("README.rst") as f:
LONG_DESCRIPTION = f.read()
Expand All @@ -15,7 +15,7 @@
long_description_content_type="text/x-rst; charset=UTF-8",
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=['brian2==2.5.4'],
install_requires=['brian2==2.6.0'],
keywords=['python', 'brian2', 'dendrites', 'SNNs', 'network models'],
classifiers=[
"Development Status :: 5 - Production/Stable",
Expand Down

0 comments on commit 227ab56

Please sign in to comment.