Skip to content

Commit

Permalink
Merge pull request #82 from ckan/fix_install_on_setuptools_70+
Browse files Browse the repository at this point in the history
fix install on editable mode on setuptools 70+
  • Loading branch information
Zharktas authored Aug 1, 2024
2 parents 1731b59 + f025da0 commit b161a16
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v2
with:
python-version: '3.6'
python-version: '3.9'
- name: Install requirements
run: pip install flake8 pycodestyle
- name: Check syntax
Expand Down Expand Up @@ -66,4 +66,4 @@ jobs:
paster --plugin=ckan db init -c test.ini
paster --plugin=ckanext-qa qa init -c test.ini
- name: Run tests
run: pytest --ckan-ini=test.ini --cov=ckanext.qa --disable-warnings ckanext/qa/tests
run: pytest --ckan-ini=test.ini --cov=ckanext.qa --disable-warnings ckanext/qa/tests
2 changes: 0 additions & 2 deletions ckanext/qa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,3 @@
except ImportError:
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)

__version__ = '2.0'
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
from setuptools import setup, find_packages
from ckanext.qa import __version__

setup(
name='ckanext-qa',
version=__version__,
version='2.0',
description='Quality Assurance plugin for CKAN',
long_description='',
classifiers=[],
Expand Down

0 comments on commit b161a16

Please sign in to comment.