File tree Expand file tree Collapse file tree 4 files changed +26
-4
lines changed Expand file tree Collapse file tree 4 files changed +26
-4
lines changed Original file line number Diff line number Diff line change 82
82
if : ${{ always() }}
83
83
steps :
84
84
- 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
Original file line number Diff line number Diff line change @@ -98,6 +98,8 @@ ci_scripts:
98
98
azure_group : nengo-ci
99
99
remote_setup :
100
100
- micromamba install -y "$TF_VERSION"
101
+ - template : deploy
102
+ wheel : true
101
103
102
104
pre_commit_config_yaml : {}
103
105
@@ -108,4 +110,4 @@ version_py:
108
110
major : 0
109
111
minor : 5
110
112
patch : 0
111
- release : false
113
+ release : true
Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ Release history
19
19
- Removed
20
20
- Fixed
21
21
22
- 0.5.0 (unreleased )
23
- ==================
22
+ 0.5.0 (January 26, 2023 )
23
+ ========================
24
24
25
25
*Compatible with TensorFlow 2.4 - 2.11 *
26
26
Original file line number Diff line number Diff line change 14
14
version_info = (0 , 5 , 0 )
15
15
16
16
name = "keras-lmu"
17
- dev = 0
17
+ dev = None
18
18
19
19
# use old string formatting, so that this can still run in Python <= 3.5
20
20
# (since this file is parsed in setup.py, before python_requires is applied)
You can’t perform that action at this time.
0 commit comments