Skip to content

Commit

Permalink
Fix publish
Browse files Browse the repository at this point in the history
  • Loading branch information
leynier committed Nov 26, 2020
1 parent b61bc06 commit fe0af0a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ jobs:
with:
poetry-version: 1.1.2
- name: Publish
run: make publish u=${{ secrets.PyPIUsername }} p=${{ secrets.PyPIPassword }}
run: make publish u="${{ secrets.PyPIUsername }}" p="${{ secrets.PyPIPassword }}"
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ tests: install
poetry run pytest

publish: tests
poetry run poetry publish --build -u=${u} -p=${p}
poetry run poetry publish --build -u="${u}" -p="${p}"
2 changes: 1 addition & 1 deletion inferfuzzy/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.1"
__version__ = "0.1.2"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "inferfuzzy"
version = "0.1.1"
version = "0.1.2"
description = "Fuzzy Inference System in Python"
authors = ["leynier <leynier41@gmail.com>"]
homepage = "https://github.com/leynier/inferfuzzy"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_inferfuzzy.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert __version__ == "0.1.1"
assert __version__ == "0.1.2"

0 comments on commit fe0af0a

Please sign in to comment.