Skip to content

Commit b161a16

Browse files
authored
Merge pull request #82 from ckan/fix_install_on_setuptools_70+
fix install on editable mode on setuptools 70+
2 parents 1731b59 + f025da0 commit b161a16

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
- uses: actions/checkout@v3
88
- uses: actions/setup-python@v2
99
with:
10-
python-version: '3.6'
10+
python-version: '3.9'
1111
- name: Install requirements
1212
run: pip install flake8 pycodestyle
1313
- name: Check syntax
@@ -66,4 +66,4 @@ jobs:
6666
paster --plugin=ckan db init -c test.ini
6767
paster --plugin=ckanext-qa qa init -c test.ini
6868
- 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

ckanext/qa/__init__.py

-2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,3 @@
55
except ImportError:
66
import pkgutil
77
__path__ = pkgutil.extend_path(__path__, __name__)
8-
9-
__version__ = '2.0'

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
from setuptools import setup, find_packages
2-
from ckanext.qa import __version__
32

43
setup(
54
name='ckanext-qa',
6-
version=__version__,
5+
version='2.0',
76
description='Quality Assurance plugin for CKAN',
87
long_description='',
98
classifiers=[],

0 commit comments

Comments
 (0)