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

Don't include setup.py hash in cache key #195

Merged
merged 3 commits into from
Jan 19, 2024
Merged
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 LICENSE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
NengoBones license
******************

Copyright (c) 2018-2023 Applied Brain Research
Copyright (c) 2018-2024 Applied Brain Research

**ABR License**

Expand Down
4 changes: 1 addition & 3 deletions actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,4 @@ runs:
- uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}
restore-keys: |
${{ runner.os }}-pip-
key: ${{ runner.os }}-pip
3 changes: 1 addition & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
"sphinx.ext.todo",
"nbsphinx",
"nengo_sphinx_theme",
"nengo_sphinx_theme.ext.backoff",
"nengo_sphinx_theme.ext.redirects",
"nengo_sphinx_theme.ext.sourcelinks",
"notfound.extension",
Expand Down Expand Up @@ -81,7 +80,7 @@

project = "NengoBones"
authors = "Applied Brain Research"
copyright = "2018-2023 Applied Brain Research"
copyright = "2018-2024 Applied Brain Research"
version = ".".join(nengo_bones.__version__.split(".")[:2]) # Short X.Y version
release = nengo_bones.__version__ # Full version, with tags

Expand Down
1 change: 0 additions & 1 deletion nengo_bones/templates/docs/conf.py.template
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ extensions = [
"sphinx.ext.todo",
"nbsphinx",
"nengo_sphinx_theme",
"nengo_sphinx_theme.ext.backoff",
{% if html_redirects %}
"nengo_sphinx_theme.ext.redirects",
{% endif %}
Expand Down
4 changes: 2 additions & 2 deletions nengo_bones/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
tagged with the version.
"""

version_info = (23, 11, 7) # bones: ignore
version_info = (24, 1, 15) # bones: ignore

name = "nengo-bones"
dev = 0
Expand All @@ -22,4 +22,4 @@
if dev is not None:
version += ".dev%d" % dev # pragma: no cover

copyright = "Copyright (c) 2018-2023 Applied Brain Research"
copyright = "Copyright (c) 2018-2024 Applied Brain Research"
Loading