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

Add codemeta.json #3307

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/release-patch.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ Post-release
- [ ] Let people know :rocket:
- [ ] Cherrypick changelog and installer links to `master`
- [ ] Update the changelog for the release on GitHub
- [ ] Update `codemeta.json` (`master` branch only) with the new version, changelog, date, and links


Changelog
Expand Down
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ Post-release
- [ ] Let people know :rocket:
- [ ] Cherrypick changelog and installer links to `master`
- [ ] Update the changelog for the release on GitHub
- [ ] Update `codemeta.json` (`master` branch only) with the new version, changelog, date, and links

Changelog
======
Expand Down
49 changes: 49 additions & 0 deletions codemeta.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
"@context": "https://doi.org/10.5063/schema/codemeta-2.0",
"type": "SoftwareSourceCode",
"applicationCategory": "neuroscience",
"author": [
{
"id": "_:author_1",
"type": "Person",
"affiliation": {
"type": "Organization",
"name": "Yale University"
},
"email": "[email protected]",
"familyName": "Hines",
"givenName": "Michael"
}
],
"codeRepository": "git+https://github.com/neuronsimulator/nrn.git",
"dateModified": "2024-07-24",
"description": "Empirically-based simulator for modeling neurons and networks of neurons",
"downloadUrl": "https://github.com/neuronsimulator/nrn/releases/tag/8.2.6",
"funder": {
"type": "Organization",
"name": "Yale University"
},
"license": "https://spdx.org/licenses/BSD-3-Clause",
"name": "NEURON",
"operatingSystem": [
"Linux",
"Windows",
"macOS"
],
"programmingLanguage": [
"C++",
"Python 3"
],
"relatedLink": "https://nrn.readthedocs.io/",
"schema:releaseNotes": "This release pins numpy to <2 and includes backports for several fixes.\n\n### Bug Fixes\n- Informative error when cannot import hoc module\n- ParallelContext: hoc_ac_ encodes global id of submitted process.\n- Python 3.12 compatibility with Windows installer (#2963)\n- Windows 11 fix for nrniv -python (#2946)\n- Fix for dynamic ECS diffusion characteristics.\n- python38 is back. For testing can use rx3doptlevel=0 bash bldnrnmacpkgcmake.sh\n- Fix cvode.use_fast_imem(1) error with electrode time varying conductance.\n- Apple M1 cmake failure in cloning subrepository. See #2326.\n- Update iv",
"softwareRequirements": [
"Bison",
"Flex",
"C/C++ compiler",
"CMake >= 3.15.0"
],
"version": "8.2.6",
"developmentStatus": "active",
"funding": "R01NS11613",
"issueTracker": "https://github.com/neuronsimulator/nrn/issues"
}
Loading