Skip to content

Commit e2eb54d

Browse files
committed
fix the python 3.7 limitations inside circleci tests
1 parent 2383a01 commit e2eb54d

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.circleci/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ jobs:
5858
- run:
5959
name: run tests
6060
command: |
61+
pip install pandas<1.2.0 numpy<1.20.0
6162
python setup.py install
6263
pip install flake8 && flake8 alpaca_trade_api tests
6364
python setup.py test

requirements/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
pandas<1.2.0 # this package requires python 3.7 for higher versions
2-
numpy<1.20.0 # this package requires python 3.7 for higher versions
1+
pandas
2+
numpy
33
requests>2,<3
4-
urllib3>1.24,<1.26
4+
urllib3>1.24,<2
55
websocket-client>=0.56.0,<1
66
websockets>=8.0,<9

0 commit comments

Comments
 (0)