Skip to content

Commit c824422

Browse files
committed
bump a few requirements
1 parent 43bb3a3 commit c824422

File tree

4 files changed

+9
-13
lines changed

4 files changed

+9
-13
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ VERSION := $(shell grep __version__ setup.py | head -1 | cut -d \" -f2 | cut -d
99
.PHONY: environment
1010
## create virtual environment for butterfree
1111
environment:
12-
@pyenv install -s 3.7.6
13-
@pyenv virtualenv 3.7.6 butterfree
12+
@pyenv install -s 3.7.13
13+
@pyenv virtualenv 3.7.13 butterfree
1414
@pyenv local butterfree
1515
@PYTHONPATH=. python -m pip install --upgrade pip
1616

@@ -221,4 +221,4 @@ help:
221221
} \
222222
printf "\n"; \
223223
}' \
224-
| more $(shell test $(shell uname) = Darwin && echo '--no-init --raw-control-chars')
224+
| more $(shell test $(shell uname) = Darwin && echo '--no-init --raw-control-chars')

requirements.dev.txt

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
1-
cmake==3.18.4
2-
h3==3.7.0
3-
pyarrow==0.15.1
1+
h3==3.7.4
42
jupyter==1.0.0
53
twine==3.1.1
64
mypy==0.790
7-
pyspark-stubs==3.0.0
85
sphinx==3.5.4
96
sphinxemoji==0.1.8
107
sphinx-rtd-theme==0.5.2
11-
recommonmark==0.7.1
8+
recommonmark==0.7.1

requirements.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
cassandra-driver>=3.22.0,<4.0
22
mdutils>=1.2.2,<2.0
3-
pandas>=0.24,<1.1
3+
pandas>=0.24,<2.0
44
parameters-validation>=1.1.5,<2.0
55
pyspark==3.*
66
typer>=0.3,<0.4
7-
setuptools>=41,<42
8-
typing-extensions==3.7.4.3
9-
boto3==1.17.*
7+
typing-extensions>3.7.4,<4
8+
boto3==1.17.*

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
license="Copyright",
3535
author="QuintoAndar",
3636
install_requires=requirements,
37-
extras_require={"h3": ["cmake==3.16.3", "h3==3.4.2"]},
37+
extras_require={"h3": ["h3>=3.4.2,<4"]},
3838
python_requires=">=3.7, <4",
3939
entry_points={"console_scripts": ["butterfree=butterfree._cli.main:app"]},
4040
include_package_data=True,

0 commit comments

Comments
 (0)