Skip to content

Commit bc80ef3

Browse files
Feature build update (#220)
* wip * wip * updates to handle changes in upstream pipenv package * updated build version
1 parent d74531b commit bc80ef3

File tree

7 files changed

+8
-7
lines changed

7 files changed

+8
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ All notable changes to the Databricks Labs Data Generator will be documented in
77

88
#### Changed
99
* Added formatting of generated code as Html for script methods
10+
* Modified pipfile to use newer version of package specifications
1011

1112
### Version 0.3.4 Post 3
1213

Pipfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ pytest = "*"
88
pytest-cov = "*"
99
sphinx = ">=2.0.0,<3.1.0"
1010
nbsphinx = "*"
11-
numpydoc = "0.8"
11+
numpydoc = "==0.8"
1212
pypandoc = "*"
13-
ipython = "7.31.1"
13+
ipython = "==7.31.1"
1414
pydata-sphinx-theme = "*"
1515
recommonmark = "*"
1616
sphinx-markdown-builder = "*"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ details of use and many examples.
6363

6464
Release notes and details of the latest changes for this specific release
6565
can be found in the GitHub repository
66-
[here](https://github.com/databrickslabs/dbldatagen/blob/release/v0.3.4post3/CHANGELOG.md)
66+
[here](https://github.com/databrickslabs/dbldatagen/blob/release/v0.3.5/CHANGELOG.md)
6767

6868
# Installation
6969

dbldatagen/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def get_version(version):
3434
return version_info
3535

3636

37-
__version__ = "0.3.4post3" # DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion
37+
__version__ = "0.3.5" # DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion
3838
__version_info__ = get_version(__version__)
3939

4040

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
author = 'Databricks Inc'
2929

3030
# The full version, including alpha/beta/rc tags
31-
release = "0.3.4post3" # DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion
31+
release = "0.3.5" # DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion
3232

3333

3434
# -- General configuration ---------------------------------------------------

python/.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.3.4post3
2+
current_version = 0.3.5
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+){0,1}(?P<release>\D*)(?P<build>\d*)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
setuptools.setup(
3333
name="dbldatagen",
34-
version="0.3.4post3",
34+
version="0.3.5",
3535
author="Ronan Stokes, Databricks",
3636
description="Databricks Labs - PySpark Synthetic Data Generator",
3737
long_description=long_description,

0 commit comments

Comments
 (0)