Skip to content

Commit

Permalink
Merge pull request #64 from basf/hotfix
Browse files Browse the repository at this point in the history
Hotfix
  • Loading branch information
mkumar73 authored Jul 1, 2024
2 parents 51929e3 + b0adda3 commit 9d26dcc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
15 changes: 6 additions & 9 deletions .github/workflows/build-publish-pypi.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,20 @@
name: PyPI Builder and Releaser
name: Publish Package to PyPi

on:
push:
tags:
- "v**"
branches:
- master

jobs:
publish:
name: Publishes release candidate to PyPI
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v2
with:
python-version: "3.8"

Expand All @@ -32,4 +29,4 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
twine upload dist/*
2 changes: 1 addition & 1 deletion mambular/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Version information."""

# The following line *must* be the last in the module, exactly as formatted:
__version__ = "0.1.5"
__version__ = "0.1.6"
Empty file added mambular/configs/__init__.py
Empty file.

0 comments on commit 9d26dcc

Please sign in to comment.