Skip to content

Commit

Permalink
build bump to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Corfucinas committed Jul 7, 2020
1 parent 94bb36e commit 4942fe2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def install_with_constraints( # type: ignore
kwargs: Additional keyword arguments for Session.install.
"""
with tempfile.NamedTemporaryFile(delete=False) as requirements:
with tempfile.NamedTemporaryFile(delete=True) as requirements:
session.run(
'poetry',
'export',
Expand Down Expand Up @@ -92,7 +92,7 @@ def lint(session: Session) -> None:
@nox.session(python=_PYTHON_VERSIONS) # type: ignore
def safety(session: Session) -> None:
"""Scan dependencies for insecure packages."""
with tempfile.NamedTemporaryFile(delete=False) as requirements:
with tempfile.NamedTemporaryFile(delete=True) as requirements:
session.run(
'poetry',
'export',
Expand Down
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 = "crypto-candlesticks"
version = "0.1.0"
version = "0.1.1"
description = "Download candlestick data fast & easy for analysis"
authors = ["Pedro Torres <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 4942fe2

Please sign in to comment.