File tree 3 files changed +3
-6
lines changed
3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 7
7
- uses : actions/checkout@v3
8
8
- uses : actions/setup-python@v2
9
9
with :
10
- python-version : ' 3.6 '
10
+ python-version : ' 3.9 '
11
11
- name : Install requirements
12
12
run : pip install flake8 pycodestyle
13
13
- name : Check syntax
66
66
paster --plugin=ckan db init -c test.ini
67
67
paster --plugin=ckanext-qa qa init -c test.ini
68
68
- name : Run tests
69
- run : pytest --ckan-ini=test.ini --cov=ckanext.qa --disable-warnings ckanext/qa/tests
69
+ run : pytest --ckan-ini=test.ini --cov=ckanext.qa --disable-warnings ckanext/qa/tests
Original file line number Diff line number Diff line change 5
5
except ImportError :
6
6
import pkgutil
7
7
__path__ = pkgutil .extend_path (__path__ , __name__ )
8
-
9
- __version__ = '2.0'
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_packages
2
- from ckanext .qa import __version__
3
2
4
3
setup (
5
4
name = 'ckanext-qa' ,
6
- version = __version__ ,
5
+ version = '2.0' ,
7
6
description = 'Quality Assurance plugin for CKAN' ,
8
7
long_description = '' ,
9
8
classifiers = [],
You can’t perform that action at this time.
0 commit comments