Skip to content

Fix collections API change from Py 3.9 to 3.10 #9

Fix collections API change from Py 3.9 to 3.10

Fix collections API change from Py 3.9 to 3.10 #9

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test-nix:
name: "py-${{ matrix.config.python }} ${{matrix.config.os}}"
runs-on: ${{ matrix.config.os }}
strategy:
matrix:
config:
- {os: ubuntu-latest, python: 3.7}
- {os: ubuntu-latest, python: pypy3}
- {os: macos-latest, python: 3.7}
steps:
- uses: actions/checkout@v2
name: Checkout
- name: Python ${{ matrix.config.python }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.config.python }}
- name: Git Config
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
- name: Install Dependencies
run: |
. activate.sh
pip install --upgrade pip setuptools wheel nose
- name: Test
run: |
. activate.sh
nosetests