Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.9']
python: ['3.10']

steps:
- name: Checkout code
Expand All @@ -24,11 +24,11 @@ jobs:

- name: Install extra packages for tests
run: |
pip install wheel nose lxml
pip install wheel pynose lxml

- name: Install package
run: |
python setup.py install
pip install .

- name: Run tests
run: nosetests --exe
3 changes: 2 additions & 1 deletion scraperwiki/sql.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from __future__ import absolute_import, print_function
from collections import Iterable, Mapping, OrderedDict
from collections import OrderedDict
from collections.abc import Iterable, Mapping

import atexit
import datetime
Expand Down
Loading