Skip to content
Open
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
6 changes: 4 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,10 @@ jobs:
steps:
- checkout
- run:
name: Install make
command: dnf install make -y
name: Install build tools
command: |
PYVER=$(python3 -c 'import sys; print(f"{sys.version_info.major}.{sys.version_info.minor}")')
dnf install -y make gcc "python${PYVER}-devel"
- run:
name: Install pip
command: |
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@

*.so

# Cython-generated C source (rebuilt from .pyx by setup.py)
pynuodb/_fetch.c

/.virttemp
/.testtemp

Expand Down
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
include README.rst LICENSE
include README.rst LICENSE
recursive-include pynuodb *.pyx
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,15 @@ all:

install:
$(_INSTALL_CMD)
$(PIP) install 'setuptools>=40.8.0' 'Cython>=3.0'
$(PYTHON) setup.py build_ext --inplace

check: mypy pylint fulltest

fulltest:
$(_INSTALL_CMD)
$(PIP) install 'setuptools>=40.8.0' 'Cython>=3.0'
$(PYTHON) setup.py build_ext --inplace
$(PIP) install -r test_requirements.txt
$(_VERIFY_CMD)
$(_PYTEST_CMD)
Expand Down
Loading