Skip to content

Commit adebeb9

Browse files
moromimayjdvalaRodrigo Martins de OliveiraLucas Fonsecalecardozo
authored
Release 1.2.1 (#338)
* Add the missing link for H3 geohash (#330) * Add the missing link for H3 geohash * Update the H3 geohash link. * Update the same link Update the same link in in spark_function_and_window.ipynb example * Update README.md (#331) * Update Github Actions Workflow runner (#332) * Update Workflow runner version * bump flake8-bandit * chore: bypass false positive for S105 Co-authored-by: Lucas Cardozo <[email protected]> * Delete sphinx version. (#334) * Update files to staging (#336) Co-authored-by: Rodrigo Martins de Oliveira <[email protected]> * Update butterfree/configs/db/cassandra_config.py Co-authored-by: Rodrigo Martins de Oliveira <[email protected]> Co-authored-by: Rodrigo Martins de Oliveira <[email protected]> * Fix kafka reader. (#310) * Fix path validate. (#311) * Add local dc property (#312) * release 1.2.1 Co-authored-by: Jay Vala <[email protected]> Co-authored-by: Rodrigo Martins de Oliveira <[email protected]> Co-authored-by: Lucas Fonseca <[email protected]> Co-authored-by: Lucas Cardozo <[email protected]> Co-authored-by: Felipe Victorino Caputo <[email protected]>
1 parent 1058c31 commit adebeb9

File tree

11 files changed

+19
-10
lines changed

11 files changed

+19
-10
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
Pipeline:
1010
if: github.ref == 'refs/heads/master'
1111

12-
runs-on: ubuntu-16.04
12+
runs-on: ubuntu-22.04
1313
container: quintoandar/python-3-7-java
1414

1515
steps:

.github/workflows/staging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
Pipeline:
1010
if: github.ref == 'refs/heads/staging'
1111

12-
runs-on: ubuntu-16.04
12+
runs-on: ubuntu-22.04
1313
container: quintoandar/python-3-7-java
1414

1515
steps:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
Pipeline:
12-
runs-on: ubuntu-16.04
12+
runs-on: ubuntu-22.04
1313
container: quintoandar/python-3-7-java
1414

1515
steps:

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ Preferably use **Added**, **Changed**, **Removed** and **Fixed** topics in each
66
## [Unreleased]
77

88

9+
## [1.2.1](https://github.com/quintoandar/butterfree/releases/tag/1.2.1)
10+
### Changed
11+
* Update README.md ([#331](https://github.com/quintoandar/butterfree/pull/331))
12+
* Update Github Actions Workflow runner ([#332](https://github.com/quintoandar/butterfree/pull/332))
13+
* Delete sphinx version. ([#334](https://github.com/quintoandar/butterfree/pull/334))
14+
15+
### Fixed
16+
* Add the missing link for H3 geohash ([#330](https://github.com/quintoandar/butterfree/pull/330))
17+
918
## [1.2.0](https://github.com/quintoandar/butterfree/releases/tag/1.2.0)
1019
### Added
1120
* [MLOP-636] Create migration classes ([#282](https://github.com/quintoandar/butterfree/pull/282))

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ To learn how to use Butterfree in practice, see [Butterfree's notebook examples]
3232
## Requirements and Installation
3333
Butterfree depends on **Python 3.7+** and it is **Spark 3.0 ready** :heavy_check_mark:
3434

35-
[Python Package Index](https://quintoandar.github.io/python-package-server/) hosts reference to a pip-installable module of this library, using it is as straightforward as including it on your project's requirements.
35+
[PyPI hosts reference to a pip-installable module of this library](https://pypi.org/project/butterfree/), using it is as straightforward as including it on your project's requirements.
3636

3737
```bash
3838
pip install butterfree

docs/requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
recommonmark==0.6.0
2-
Sphinx==3.1.1
32
sphinx-rtd-theme==0.4.3
43
sphinxemoji==0.1.6
54
typing-extensions==3.7.4.2

examples/simple_feature_set/simple_feature_set.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
"| - | - | - | - | - | - | - | - | - | - | - | - | - | - |\n",
9090
"| int | timestamp | float | float | int | int | float | float | float | double | double | string | string | string |\n",
9191
"\n",
92-
"For more information about H3 geohash click [here]()\n",
92+
"For more information about H3 geohash click [here](https://h3geo.org/docs/)\n",
9393
"\n",
9494
"The following code blocks will show how to generate this feature set using Butterfree library:\n",
9595
"\n"

examples/spark_function_and_window/spark_function_and_window.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"\n",
5151
"Note that we're going to compute two aggregated features, rent average and standard deviation, considering the two last occurrences (or events). It'd also be possible to define time windows, instead of windows based on events.\n",
5252
"\n",
53-
"For more information about H3 geohash click [here]().\n",
53+
"For more information about H3 geohash click [here](https://h3geo.org/docs/).\n",
5454
"\n",
5555
"The following code blocks will show how to generate this feature set using Butterfree library:\n",
5656
"\n"

requirements.lint.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ flake8-isort==2.8.0
44
isort<5 # temporary fix
55
flake8-docstrings==1.5.0
66
flake8-bugbear==20.1.0
7-
flake8-bandit==2.1.2
7+
flake8-bandit==3.0.0
8+

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import find_packages, setup
22

33
__package_name__ = "butterfree"
4-
__version__ = "1.2.0"
4+
__version__ = "1.2.1"
55
__repository_url__ = "https://github.com/quintoandar/butterfree"
66

77
with open("requirements.txt") as f:

0 commit comments

Comments
 (0)