Skip to content

Commit a964696

Browse files
committed
Update Numpy devinitions
Update version Readd setup.cfg
1 parent 0677fdd commit a964696

File tree

4 files changed

+49
-43
lines changed

4 files changed

+49
-43
lines changed

bashplot/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Bashplot: Instant data plotting from the terminal into the terminal."""
2-
__version__ = "1.0.2"
2+
__version__ = "1.1.0"

poetry.lock

+43-23
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "bashplot"
3-
version = "1.0.2"
3+
version = "1.1.0"
44
description = "Instant data plotting from the terminal into the terminal"
55
readme = "README.md"
66
authors = ["Anselm Hahn <Anselm.Hahn@gmail.com>"]
@@ -32,8 +32,8 @@ classifiers = [
3232
[tool.poetry.dependencies]
3333
python = ">=3.6.2,<3.10"
3434
numpy = [
35-
{ version = "<=1.20", python = "==3.6" },
36-
{ version = "^1.21.4", python = ">3.6" }
35+
{ version = "<=1.20", python = "<3.7" },
36+
{ version = "^1.21.4", python = ">=3.7" }
3737
]
3838
plotille = "^3.8.0"
3939

@@ -91,5 +91,5 @@ exclude = '''
9191
[tool.flake8]
9292
max-doc-length = 100
9393
max-line-length = 88
94-
docstring-convention = "google"
94+
docstring-convention = "numpy"
9595
ignore = ["E203", "W503", "W605"]

setup.cfg

+1-15
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,3 @@
11
[flake8]
22
max-line-length = 88
3-
extend-ignore = E203, W503, W293, W291
4-
5-
[tool.isort]
6-
multi_line_output = 3
7-
include_trailing_comma = true
8-
force_grid_wrap = 0
9-
use_parentheses = true
10-
ensure_newline_before_comments = true
11-
line_length = 88
12-
13-
[pylint]
14-
max-line-length = 88
15-
16-
[pylint.messages_control]
17-
disable = C0330, C0326
3+
extend-ignore = E203, W503, W293, W291

0 commit comments

Comments
 (0)