Skip to content

Commit

Permalink
update tox ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jrepp committed Feb 25, 2024
1 parent 636cc3b commit bb18349
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ jobs:
python -m pip install --upgrade pip
python -m pip install -r requirements_publish.txt
- name: Run tests
run: tox
run: python -m tox

4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import os
import inspect

from setuptools import find_packages, setup

Expand All @@ -8,10 +7,11 @@


def local_path():
filename = os.path.abspath(inspect.getfile(inspect.currentframe()))
filename = os.path.abspath(__file__)
local_path = os.path.dirname(filename)
return local_path


def readme():
with open(os.path.join(local_path(), 'README.md')) as f:
return f.read()
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 = {py27,py36,py37}-{cli,suite}
envlist = {py38,py310,py312}-{cli,suite}

[base]
deps=-e .[tests]
Expand Down

0 comments on commit bb18349

Please sign in to comment.