Skip to content

Commit f25bf4c

Browse files
Migration from gerrit to github
1 parent 302d81a commit f25bf4c

File tree

4 files changed

+47
-2
lines changed

4 files changed

+47
-2
lines changed

.gitlab-ci.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
include:
2+
- project: nse/ci
3+
file:
4+
- /ci/lib/tox-bb5.yml
5+
- /ci/jobs/check-version.yml
6+
- /ci/jobs/lint.yml
7+
- /ci/jobs/py36.yml
8+
- /ci/jobs/py37.yml
9+
- /ci/jobs/py38.yml
10+
- /ci/jobs/docs.yml
11+
- /ci/jobs/build-package.yml
12+
- /ci/jobs/publish-package.yml
13+
- /ci/jobs/publish-docs.yml
14+
- /ci/jobs/tag.yml
15+
16+
docs:
17+
variables:
18+
EXTRA_MODULES: archive/2021-05:py-mpi4py
19+
20+
lint:
21+
variables:
22+
EXTRA_MODULES: archive/2021-05:py-mpi4py
23+
24+
py36:
25+
variables:
26+
EXTRA_MODULES: archive/2021-05:py-mpi4py
27+
28+
py37:
29+
variables:
30+
EXTRA_MODULES: archive/2021-05:py-mpi4py
31+
32+
py38:
33+
variables:
34+
EXTRA_MODULES: archive/2021-05:py-mpi4py

bluepyparallel/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Package version"""
22
# pragma: no cover
3-
VERSION = "0.0.6"
3+
VERSION = "0.0.7.dev0"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
url="https://bbpteam.epfl.ch/documentation/projects/BluePyParallel",
4141
project_urls={
4242
"Tracker": "https://bbpteam.epfl.ch/project/issues/projects/CELLS/issues",
43-
"Source": "ssh://bbpcode.epfl.ch/cells/BluePyParallel",
43+
"Source": "https://bbpgitlab.epfl.ch/neuromath/bluepyparallel",
4444
},
4545
license="BBP-internal-confidential",
4646
install_requires=reqs,

tox.ini

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,17 @@ commands =
5050
commands_pre =
5151
commands_post =
5252

53+
[testenv:check-packaging]
54+
skip_install = true
55+
deps =
56+
wheel
57+
twine
58+
commands =
59+
python setup.py sdist bdist_wheel -d {envtmpdir}/dist
60+
twine check {envtmpdir}/dist/*
61+
commands_pre =
62+
commands_post =
63+
5364
[testenv:lint]
5465
deps =
5566
{[base]testdeps}

0 commit comments

Comments
 (0)