Skip to content

Commit 52c6679

Browse files
committed
Merge branch 'master' into rate_models
2 parents 1749685 + e112a08 commit 52c6679

File tree

7 files changed

+30
-12
lines changed

7 files changed

+30
-12
lines changed

.github/workflows/Linux_CI.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ name: Linux CI
55

66
on:
77
push:
8-
branches: [ master, brainpy-2.x ]
8+
branches: [ master ]
99
pull_request:
10-
branches: [ master, brainpy-2.x ]
10+
branches: [ master ]
1111

1212

1313
jobs:
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: ["3.7", "3.8", "3.9"]
19+
python-version: ["3.6", "3.7", "3.8", "3.9"]
2020

2121
steps:
2222
- uses: actions/checkout@v2

.github/workflows/MacOS_CI.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,17 @@ name: MacOS CI
55

66
on:
77
push:
8-
branches: [ master, brainpy-2.x ]
8+
branches: [ master ]
99
pull_request:
10-
branches: [ master, brainpy-2.x ]
10+
branches: [ master ]
1111

1212

1313
jobs:
1414
build:
15-
runs-on: ${{ matrix.os }}
15+
runs-on: macos-latest
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
os: [macos-10.15, macos-11, macos-latest]
2019
python-version: ["3.7", "3.8", "3.9"]
2120

2221
steps:
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Sync multiple branches
2+
on:
3+
pull_request:
4+
branches:
5+
- master
6+
jobs:
7+
sync-branch:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@master
11+
12+
- name: Merge master -> brainpy-2.x
13+
uses: devmasx/[email protected]
14+
with:
15+
type: now
16+
from_branch: master
17+
target_branch: brainpy-2.x
18+
github_token: ${{ github.token }}

.github/workflows/Windows_CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ name: Windows CI
55

66
on:
77
push:
8-
branches: [ master, brainpy-2.x ]
8+
branches: [ master ]
99
pull_request:
10-
branches: [ master, brainpy-2.x ]
10+
branches: [ master ]
1111

1212

1313
jobs:

.github/workflows/contributors.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: Add contributors
22
on:
33
schedule:
44
- cron: '20 20 * * *'
5+
push:
6+
branches: [ master ]
57

68
jobs:
79
add-contributors:

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -263,13 +263,12 @@ analyzer.show_figure()
263263
</p>
264264

265265

266+
266267
### 6. More others
267268

268269
For **more functions and examples**, please refer to the [documentation](https://brainpy.readthedocs.io/) and [examples](https://brainpy-examples.readthedocs.io/).
269270

270271

271-
272-
273272
## License
274273

275274
[GNU General Public License v3.0](https://github.com/PKU-NIP-Lab/BrainPy/blob/master/LICENSE)

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-r requirements.txt
22

3-
matplotlib>=3.4
3+
matplotlib>=3.3
44
jaxlib>=0.1.64
55
sympy>=1.6
66
scipy>=1.1.0

0 commit comments

Comments
 (0)