Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/3.13 fixes do not enable gha #193

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13.0-beta.2"]
runs-on: [ubuntu-latest, windows-latest, macos-latest]
exclude:
- runs-on: macos-latest
Expand Down
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
Loading