Skip to content

Commit 67c8b6d

Browse files
committed
Release v0.5.0
1 parent c8d65a4 commit 67c8b6d

File tree

4 files changed

+26
-4
lines changed

4 files changed

+26
-4
lines changed

.github/workflows/ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,3 +82,23 @@ jobs:
8282
if: ${{ always() }}
8383
steps:
8484
- uses: nengo/nengo-bones/actions/coverage-report@main
85+
deploy:
86+
needs:
87+
- test
88+
if: >-
89+
startsWith(github.ref_name, 'release-candidate-') ||
90+
(github.ref_type == 'tag' && startsWith(github.ref_name, 'v'))
91+
runs-on: ubuntu-latest
92+
timeout-minutes: 30
93+
steps:
94+
- name: Write .pypirc to file
95+
run: |
96+
echo '${{ secrets.PYPIRC_FILE }}' > ~/.pypirc
97+
- uses: actions/checkout@v3
98+
- uses: nengo/nengo-bones/actions/setup@main
99+
with:
100+
python-version: "3.10"
101+
- uses: nengo/nengo-bones/actions/generate-and-check@main
102+
- uses: nengo/nengo-bones/actions/run-script@main
103+
with:
104+
name: deploy

.nengobones.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,8 @@ ci_scripts:
9898
azure_group: nengo-ci
9999
remote_setup:
100100
- micromamba install -y "$TF_VERSION"
101+
- template: deploy
102+
wheel: true
101103

102104
pre_commit_config_yaml: {}
103105

@@ -108,4 +110,4 @@ version_py:
108110
major: 0
109111
minor: 5
110112
patch: 0
111-
release: false
113+
release: true

CHANGES.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ Release history
1919
- Removed
2020
- Fixed
2121
22-
0.5.0 (unreleased)
23-
==================
22+
0.5.0 (January 26, 2023)
23+
========================
2424

2525
*Compatible with TensorFlow 2.4 - 2.11*
2626

keras_lmu/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
version_info = (0, 5, 0)
1515

1616
name = "keras-lmu"
17-
dev = 0
17+
dev = None
1818

1919
# use old string formatting, so that this can still run in Python <= 3.5
2020
# (since this file is parsed in setup.py, before python_requires is applied)

0 commit comments

Comments
 (0)