Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix install on editable mode on setuptools 70+ #82

Merged
merged 3 commits into from
Aug 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading