-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
27 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -98,3 +98,9 @@ codecov_yml: | |
pre_commit_config_yaml: {} | ||
|
||
pyproject_toml: {} | ||
|
||
version_py: | ||
major: 0 | ||
minor: 5 | ||
patch: 0 | ||
release: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,24 @@ | ||
"""nengo_extras version information. | ||
# Automatically generated by nengo-bones, do not edit this file directly | ||
|
||
We use semantic versioning (see http://semver.org/). | ||
# pylint: disable=consider-using-f-string | ||
|
||
"""NengoExtras version information. | ||
We use semantic versioning (see http://semver.org/) | ||
and conform to PEP440 (see https://www.python.org/dev/peps/pep-0440/). | ||
'.devN' will be added to the version unless the code base represents | ||
'.dev0' will be added to the version unless the code base represents | ||
a release version. Release versions are git tagged with the version. | ||
""" | ||
|
||
name = "nengo_extras" | ||
version_info = (0, 5, 0) # (major, minor, patch) | ||
dev = 0 | ||
version_info = (0, 5, 0) | ||
|
||
name = "nengo-extras" | ||
dev = None | ||
|
||
# use old string formatting, so that this can still run in Python <= 3.5 | ||
# (since this file is parsed in setup.py, before python_requires is applied) | ||
version = ".".join(str(v) for v in version_info) | ||
if dev is not None: | ||
version += ".dev%d" % dev | ||
|
||
version = "{v}{dev}".format( | ||
v=".".join(str(v) for v in version_info), | ||
dev=(".dev%d" % dev) if dev is not None else "", | ||
) | ||
copyright = "Copyright (c) 2015-2022 Applied Brain Research" |