Skip to content

Commit

Permalink
remove support for python2 in the tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nestor Acuna-Blanco committed May 18, 2023
1 parent 7c8beee commit 5f6b0d0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name: CI

on: [push, pull_request]
on: [ pull_request ]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python: [3.8, 3.9, 3.11]

python: [ 3.7, 3.8, 3.9, 3.11 ]
exclude:
- python: 3.7
steps:
- uses: actions/checkout@v2
- name: Setup Python
Expand All @@ -20,7 +20,6 @@ jobs:
run: |
pip install tox
pip install -r ./requirements.txt
- name: Run Tox
# Run tox using the version of Python in `PATH`
run: tox -e py
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# content of: tox.ini , put in same dir as setup.py
[tox]
envlist = py27,py39
envlist = py39

[testenv]
# install pytest in the virtualenv where commands will be executed
Expand Down

0 comments on commit 5f6b0d0

Please sign in to comment.