Skip to content

Commit 7f015ea

Browse files
authored
Merge pull request #1012 from ironmussa/develop
Fix #1011
2 parents 6e4950d + 5ff37dc commit 7f015ea

File tree

6 files changed

+26
-8
lines changed

6 files changed

+26
-8
lines changed

Diff for: .gitignore

+18
Original file line numberDiff line numberDiff line change
@@ -86,3 +86,21 @@ examples/data/star0000-1.csv
8686
examples/yellow_tripdata_2009-01.csv
8787

8888
examples/yellow_tripdata_2009-02.csv
89+
90+
tests/creator/dask-worker-space/
91+
92+
examples/data/AllData.xlsx
93+
94+
examples/data/jurgen.csv
95+
96+
examples/data/linkedin.csv
97+
98+
examples/data/netflix_titles.csv
99+
100+
examples/data/personal_finance769k.csv
101+
102+
examples/data/taa.csv
103+
104+
examples/data/titanic3-1.xlsx
105+
106+
examples/mydask.png

Diff for: docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
# The short X.Y version.
6161
version = '2.2'
6262
# The full version, including alpha/beta/rc tags.
63-
release = "2.2.31"
63+
release = "2.2.32"
6464

6565
# The language for content autogenerated by Sphinx. Refer to documentation
6666
# for a list of supported languages.

Diff for: optimus/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ def _safe_int(string):
55
return string
66

77

8-
__version__ = '2.2.31'
8+
__version__ = '2.2.32'
99
VERSION = tuple(_safe_int(x) for x in __version__.split('.'))

Diff for: requirements.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
simplejson==3.16.0
22
cryptography==2.7
33
imgkit==1.0.1
4-
packaging==19.1
4+
packaging==19.0
55
requests==2.20.0
66
tqdm==4.28.1
77
pymongo==3.9.0
@@ -23,9 +23,9 @@ flask==1.0.2
2323
ipython==7.5.0
2424
ratelimit==2.2.1
2525
humanize==0.5.1
26-
h2o-pysparkling-2.4==2.4.13
27-
psutil==5.6.3
28-
backoff==1.8.0
26+
h2o-pysparkling-2.4==2.4.10
27+
psutil==5.7.2
28+
backoff==1.10.0
2929
pymongo==3.9.0
3030
kombu==4.6.1
3131
pandas==0.24.2

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def readme():
5959
author='Favio Vazquez and Argenis Leon',
6060
author_email='[email protected]',
6161
url='https://github.com/ironmussa/Optimus/',
62-
download_url='https://github.com/ironmussa/Optimus/archive/2.2.31.tar.gz',
62+
download_url='https://github.com/ironmussa/Optimus/archive/2.2.32.tar.gz',
6363
description=('Optimus is the missing framework for cleaning and pre-processing data in a distributed fashion with '
6464
'pyspark.'),
6565
long_description=readme(),

Diff for: tests/test_df_cols.py

+1-1
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)