Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/wheels-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,12 +114,12 @@ jobs:
sudo bash packaging/python/build_static_readline_osx.bash

- name: Change name of package for release
if: inputs.build_type == 'release'
if: inputs.build_type == 'nightly'
run: |
python3 -m venv venv
source venv/bin/activate
python3 -m pip install tomli tomli-w
python3 packaging/python/change_name.py ./pyproject.toml neuron
python3 packaging/python/change_name.py ./pyproject.toml neuron-nightly

- name: Optimize RX3D Python module
if: inputs.optimize_rxd == true
Expand Down
2 changes: 1 addition & 1 deletion docs/install/python_wheels.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Any official update of these files shall imply a PR reviewed and merged before `

All wheels built on Azure are:

* Published to `Pypi.org` as
* Published to `pypi.org` as
* `neuron-nightly` -> when the pipeline is launched in CRON mode
* `neuron-x.y.z` -> when the pipeline is manually triggered for release `x.y.z`
* Stored as `Azure artifacts` in the Azure pipeline for every run.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ requires = [
# when making a release since PEP 621 disallows dynamic names.
# Note that this only affects the name of the _wheel_, not the importable package name,
# nor the CMake project name.
name = "neuron-nightly"
name = "neuron"
description = "Empirically-based simulator for modeling neurons and networks of neurons"
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "Copyright" }
Expand Down
Loading