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
8 changes: 4 additions & 4 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,13 @@ jobs:
poetry build
- name: Build and publish to Test PyPI
env:
TWINE_USERNAME: ${{ secrets.TEST_PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_PASSWORD }}
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.GH_TESTPYPI_LFPYKIT_TOKEN }}
run: |
twine upload --repository-url https://test.pypi.org/legacy/ dist/* --verbose
- name: Publish to PyPI
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.GH_PYPI_LFPYKIT_TOKEN }}
run: |
twine upload dist/* --verbose
8 changes: 4 additions & 4 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ jobs:
poetry build
- name: Build and publish to Test PYPI
env:
TWINE_USERNAME: ${{ secrets.TEST_PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_PASSWORD }}
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.GH_TESTPYPI_LFPYKIT_TOKEN }}
run: |
twine upload --repository-url https://test.pypi.org/legacy/ dist/* --verbose
- name: Publish to PYPI
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.GH_PYPI_LFPYKIT_TOKEN }}
run: |
twine upload dist/* --verbose
2 changes: 1 addition & 1 deletion lfpykit/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "0.6.1"
version = "0.6.2"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "LFPykit"
version = "0.6.1"
version = "0.6.2"
description = "Electrostatic models for multicompartment neuron models"
authors = ["LFPy-team <lfpy@users.noreply.github.com>"]

Expand Down
Loading