Skip to content

Commit

Permalink
CI/Tests: Debug/fix installation on Python 3.6 to 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Apr 9, 2023
1 parent b44efa7 commit 2275340
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ development
- Tests: Add software tests
- Improve documentation
- CI: Add GHA configuration to invoke software tests
- CI/Tests: Fix installation on Python 3.6 to 3.9

2020-12-29 0.11.0
=================
Expand Down
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -52,16 +52,16 @@ pypi-upload: install-releasetools

install-package:
@test -e $(python) || python3 -m venv $(venv)
@$(pip) install --quiet --use-pep517 --prefer-binary --editable=.[test,develop,release,sql]
$(pip) install --prefer-binary --editable=.[test,develop,release,sql]

install-doctools:
@test -e $(python) || python3 -m venv $(venv)
@$(pip) install --quiet --requirement requirements-docs.txt --upgrade
$(pip) install --requirement requirements-docs.txt --upgrade

install-releasetools:
@test -e $(python) || python3 -m venv $(venv)
@$(pip) install --quiet --requirement requirements-release.txt --upgrade
$(pip) install --requirement requirements-release.txt --upgrade

install-tests:
@test -e $(python) || python3 -m venv $(venv)
@$(pip) install --quiet --requirement requirements-tests.txt --upgrade
$(pip) install --requirement requirements-tests.txt --upgrade
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
install_requires=requires,
tests_require=test_requires,
extras_require={
'sql': ['duckdb<0.7']
'sql': ['duckdb>=0.3,<0.7']
},
dependency_links=[
],
Expand Down
Empty file added tests/__init__.py
Empty file.

0 comments on commit 2275340

Please sign in to comment.