Skip to content

Commit db6b573

Browse files
committed
Bumping version to 0.3.2
1 parent 19aaff9 commit db6b573

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

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

33
> DataFrames on AWS
44
5-
[![Release](https://img.shields.io/badge/release-0.3.1-brightgreen.svg)](https://pypi.org/project/awswrangler/)
5+
[![Release](https://img.shields.io/badge/release-0.3.2-brightgreen.svg)](https://pypi.org/project/awswrangler/)
66
[![Python Version](https://img.shields.io/badge/python-3.6%20%7C%203.7%20%7C%203.8-brightgreen.svg)](https://anaconda.org/conda-forge/awswrangler)
77
[![Documentation Status](https://readthedocs.org/projects/aws-data-wrangler/badge/?version=latest)](https://aws-data-wrangler.readthedocs.io/?badge=latest)
88
[![Coverage](https://img.shields.io/badge/coverage-89%25-brightgreen.svg)](https://pypi.org/project/awswrangler/)

awswrangler/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
__title__ = "awswrangler"
44
__description__ = "DataFrames on AWS."
5-
__version__ = "0.3.1"
5+
__version__ = "0.3.2"
66
__license__ = "Apache License 2.0"

building/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM lambci/lambda:build-python3.7
1+
FROM lambci/lambda:build-python3.6
22

33
RUN yum install -y \
44
boost-devel \
55
jemalloc-devel \
66
bison \
77
flex \
88
autoconf \
9-
python37-devel
9+
python36-devel
1010

1111
RUN pip3 install --upgrade pip
1212

building/publish.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ set -ex
33

44
cd ..
55
rm -fr build dist .egg awswrangler.egg-info
6-
python3.7 setup.py bdist_egg
7-
python3.7 setup.py bdist_wheel
8-
python3.7 setup.py sdist
6+
python3.6 setup.py bdist_egg
7+
python3.6 setup.py bdist_wheel
8+
python3.6 setup.py sdist
99
twine upload dist/*
1010
rm -fr build dist .egg awswrangler.egg-info

0 commit comments

Comments
 (0)