Skip to content

Commit

Permalink
Merge pull request #194 from NeuralEnsemble/feat/3.13-fixes-do-not-en…
Browse files Browse the repository at this point in the history
…able-gha

Feat/3.13 fixes do not enable gha
  • Loading branch information
sanjayankur31 authored Jun 17, 2024
2 parents f27b896 + 46bcd6f commit 4db530d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions neuroml/nml/generatedssupersuper.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def add(self, obj=None, hint=None, force=False, validate=True, **kwargs):
if neuroml.build_time_validation.ENABLED and validate:
self.validate()
else:
logger.warn("Build time validation is disabled.")
logger.warning("Build time validation is disabled.")
return obj

@classmethod
Expand Down Expand Up @@ -157,7 +157,7 @@ def component_factory(cls, component_type, validate=True, **kwargs):
if neuroml.build_time_validation.ENABLED and validate:
comp.validate()
else:
logger.warn("Build time validation is disabled.")
logger.warning("Build time validation is disabled.")
return comp

def __add(self, obj, member, force=False):
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ install_requires =
lxml
six
networkx
numpy
numpy<2.0.0
tables>=3.3.0
typing; python_version<"3.5"
natsort
Expand All @@ -53,7 +53,7 @@ dev =
wheel
generateds >= 2.20a; python_version >= '3.0'
cython
numpy
numpy<2.0.0
networkx
flake8
pytest
Expand Down

0 comments on commit 4db530d

Please sign in to comment.