Skip to content

Commit

Permalink
Merge pull request #7 from sadikkuzu/v0.1.5
Browse files Browse the repository at this point in the history
Bump version - v0.1.5
  • Loading branch information
sadikkuzu authored Oct 19, 2021
2 parents 5a5bb47 + 1f38f6f commit 868b9bf
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 9 deletions.
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 = "squiral"
version = "0.1.4"
version = "0.1.5"
description = "squiral - square spiral"
authors = ["SADIK KUZU <[email protected]>"]
homepage = "https://github.com/sadikkuzu/squiral"
Expand Down
3 changes: 0 additions & 3 deletions squiral/__init__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
__version__ = '0.1.4'

from .squiral import (
produce,
printout,
)

__all__ = [
'__version__',
'produce',
'printout',
]
6 changes: 1 addition & 5 deletions tests/test_squiral.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
import pytest
from squiral import __version__, produce
from squiral import produce
from squiral.squiral import next_point, to_where, directions
from tests.testdata_squiral import data_to_where, data_next_point


def test_version():
assert __version__ == '0.1.4'


@pytest.mark.parametrize("A, direction", data_to_where)
def test_yn(A, direction):
assert to_where(A) == direction
Expand Down

0 comments on commit 868b9bf

Please sign in to comment.