Skip to content

Commit

Permalink
Merge pull request #1455 from CartoDB/add-python-38-ci
Browse files Browse the repository at this point in the history
Add Python 3.8 to CI
  • Loading branch information
Jesus89 committed Jan 14, 2020
2 parents 6df37ea + 48b420d commit a4a2838
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ python:
- '3.5'
- '3.6'
- '3.7'
- '3.8'
install:
- pip install tox-travis
script:
Expand Down
2 changes: 1 addition & 1 deletion cartoframes/utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def text_match(regex, text):
def camel_dictionary(dictionary):
snake_keys = filter(in_snake_case, dictionary.keys())

for snake_key in snake_keys:
for snake_key in list(snake_keys):
dictionary[snake_to_camel(snake_key)] = dictionary.pop(snake_key)

return dictionary
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ def get_version():
'geopandas>=0.6.0,<1.0',
'tqdm>=4.32.1,<5.0',
'unidecode>=1.1.0,<2.0',
'pyarrow==0.14.1',
'google-cloud-storage==1.23.0',
'google-cloud-bigquery==1.22.0',
'google-cloud-bigquery-storage==0.7.0',
Expand Down Expand Up @@ -90,7 +89,8 @@ def get_version():
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
keywords=['carto', 'data', 'science', 'maps', 'spatial', 'pandas'],

Expand Down
2 changes: 1 addition & 1 deletion tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
pip install tox
```

The following command runs the linter and all the unit tests for the selected versions of Python (py35, py36, py37)
The following command runs the linter and all the unit tests for the selected versions of Python (py35, py36, py37, py38)

```
tox
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py35, py36, py37
envlist = py35, py36, py37, py38

[testenv]
deps =
Expand Down

0 comments on commit a4a2838

Please sign in to comment.