Skip to content

Commit

Permalink
Release v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
drasmuss committed Jan 26, 2023
1 parent c8d65a4 commit 67c8b6d
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 4 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,23 @@ jobs:
if: ${{ always() }}
steps:
- uses: nengo/nengo-bones/actions/coverage-report@main
deploy:
needs:
- test
if: >-
startsWith(github.ref_name, 'release-candidate-') ||
(github.ref_type == 'tag' && startsWith(github.ref_name, 'v'))
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Write .pypirc to file
run: |
echo '${{ secrets.PYPIRC_FILE }}' > ~/.pypirc
- uses: actions/checkout@v3
- uses: nengo/nengo-bones/actions/setup@main
with:
python-version: "3.10"
- uses: nengo/nengo-bones/actions/generate-and-check@main
- uses: nengo/nengo-bones/actions/run-script@main
with:
name: deploy
4 changes: 3 additions & 1 deletion .nengobones.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,8 @@ ci_scripts:
azure_group: nengo-ci
remote_setup:
- micromamba install -y "$TF_VERSION"
- template: deploy
wheel: true

pre_commit_config_yaml: {}

Expand All @@ -108,4 +110,4 @@ version_py:
major: 0
minor: 5
patch: 0
release: false
release: true
4 changes: 2 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ Release history
- Removed
- Fixed
0.5.0 (unreleased)
==================
0.5.0 (January 26, 2023)
========================

*Compatible with TensorFlow 2.4 - 2.11*

Expand Down
2 changes: 1 addition & 1 deletion keras_lmu/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
version_info = (0, 5, 0)

name = "keras-lmu"
dev = 0
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)
Expand Down

0 comments on commit 67c8b6d

Please sign in to comment.