Skip to content

Commit a013967

Browse files
authored
Merge pull request #81 from the-virtual-brain/EBR-40
EBR-40 Adjust build and copyright
2 parents c44d69d + 47905c0 commit a013967

File tree

6 files changed

+14
-11
lines changed

6 files changed

+14
-11
lines changed

.github/workflows/wheels.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/setup-python@v5
2020

2121
- name: Install cibuildwheel
22-
run: python -m pip install setuptools cibuildwheel==2.11.3
22+
run: python -m pip install setuptools cibuildwheel
2323

2424
- name: Build wheels
2525
run: python -m cibuildwheel --output-dir wheelhouse
@@ -56,8 +56,11 @@ jobs:
5656
name: artifact
5757
path: dist
5858

59-
- uses: pypa/gh-action-pypi-publish@v1.5.0
60-
with:
61-
user: ${{ secrets.PYPI_USER }}
62-
password: ${{ secrets.PYPI_PASSWORD }}
63-
# repository_url: https://test.pypi.org/legacy/
59+
- name: Release on Pypi
60+
env:
61+
TWINE_USERNAME: ${{ secrets.PYPI_USER }}
62+
TWINE_PASSWORD: ${{ secrets.PYPI_PASS }}
63+
run: |
64+
echo "Publishing on pypi..."
65+
python -m pip install -U twine
66+
twine upload dist/*

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
TheVirtualBrain is a brain-simulation software. See also http://www.thevirtualbrain.org
22

3-
(c) 2012-2020, Baycrest Centre for Geriatric Care ("Baycrest") and others
3+
(c) 2012-2024, Baycrest Centre for Geriatric Care ("Baycrest") and others
44

55
This program is free software: you can redistribute it and/or modify it under the terms
66
of the GNU General Public License as published by the Free Software Foundation, either

gdist.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# TheVirtualBrain-Scientific Package (for simulators). See content of the
77
# documentation-folder for more details. See also http://www.thevirtualbrain.org
88
#
9-
# (c) 2012-2020, Baycrest Centre for Geriatric Care ("Baycrest") and others
9+
# (c) 2012-2024, Baycrest Centre for Geriatric Care ("Baycrest") and others
1010
#
1111
# This program is free software: you can redistribute it and/or modify it under the
1212
# terms of the GNU General Public License as published by the Free Software Foundation,

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# TheVirtualBrain-Scientific Package (for simulators). See content of the
77
# documentation-folder for more details. See also http://www.thevirtualbrain.org
88
#
9-
# (c) 2012-2020, Baycrest Centre for Geriatric Care ("Baycrest") and others
9+
# (c) 2012-2024, Baycrest Centre for Geriatric Care ("Baycrest") and others
1010
#
1111
# This program is free software: you can redistribute it and/or modify it under the
1212
# terms of the GNU General Public License as published by the Free Software Foundation,

tests/test_equality_with_stable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# TheVirtualBrain-Scientific Package (for simulators). See content of the
66
# documentation-folder for more details. See also http://www.thevirtualbrain.org
77
#
8-
# (c) 2012-2020, Baycrest Centre for Geriatric Care ("Baycrest") and others
8+
# (c) 2012-2024, Baycrest Centre for Geriatric Care ("Baycrest") and others
99
#
1010
# This program is free software: you can redistribute it and/or modify it under the
1111
# terms of the GNU General Public License as published by the Free Software Foundation,

tests/test_gdist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# TheVirtualBrain-Scientific Package (for simulators). See content of the
66
# documentation-folder for more details. See also http://www.thevirtualbrain.org
77
#
8-
# (c) 2012-2020, Baycrest Centre for Geriatric Care ("Baycrest") and others
8+
# (c) 2012-2024, Baycrest Centre for Geriatric Care ("Baycrest") and others
99
#
1010
# This program is free software: you can redistribute it and/or modify it under the
1111
# terms of the GNU General Public License as published by the Free Software Foundation,

0 commit comments

Comments
 (0)