Skip to content

Commit 1d256c3

Browse files
committed
v1.
1 parent 8d88406 commit 1d256c3

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.10-dev
2+
current_version = 1.0.0
33
commit = True
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?:-(?P<release>[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+(?P<build>[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?

noxfile.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,3 +105,11 @@ def pyroma(session):
105105
"""Run pyroma to check if the package is ok."""
106106
session.install("pyroma")
107107
session.run("pyroma", ".")
108+
109+
110+
@nox.session(name="build")
111+
def build(session):
112+
"""Build a pip package."""
113+
session.install("build")
114+
session.install("setuptools")
115+
session.run("python", "-m", "build")

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package-dir = "src"
44
[project]
55
name = "ptwt"
66
description = "Differentiable and gpu enabled fast wavelet transforms in PyTorch"
7-
version = "0.1.10-dev"
7+
version = "1.0.0"
88
keywords = ["Wavelets", "Wavelet Transform", "Fast Wavelet Transform", "Boundary Wavelets", "PyTorch"]
99
readme = "README.rst"
1010
authors = [

src/ptwt/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"_get_git_hash",
1515
]
1616

17-
VERSION = "0.1.10-dev"
17+
VERSION = "1.0.0"
1818

1919

2020
def _get_git_hash() -> str:

0 commit comments

Comments
 (0)