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

Restructure project to use maturin to build pyo3 bindings #88

Merged
merged 10 commits into from
Mar 13, 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
46 changes: 0 additions & 46 deletions .github/actions/action.yml

This file was deleted.

54 changes: 54 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: ci

on:
push:
branches:
- main
tags:
- '**'
pull_request: {}

jobs:
test-python:
name: test ${{ matrix.python-version }}
strategy:
fail-fast: false
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: install rust stable
uses: dtolnay/rust-toolchain@stable

- name: cache rust
uses: Swatinem/rust-cache@v2
with:
key: test-v3

- name: set up python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

# Issue with requests < 2.29.0 and docker. See: https://github.com/docker/docker-py/issues/3113
- run: pip install docker requests==2.28.2

- run: pip install -e .
env:
RUST_BACKTRACE: 1

- run: pip freeze

- run: sh scripts/run_tests.sh

- run: cargo test

50 changes: 0 additions & 50 deletions .github/workflows/stability.yml

This file was deleted.

47 changes: 0 additions & 47 deletions .github/workflows/unit_tests.yml

This file was deleted.

121 changes: 57 additions & 64 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,84 +1,77 @@
# -----------------------------------
# OS X
# -----------------------------------
/target

# Directory files
.DS_Store
.AppleDouble
.LSOverride

# Thumbnail files
._*

# Files that might appear on external disk
.Spotlight-V100
.Trashes
# Byte-compiled / optimized / DLL files
__pycache__/
.pytest_cache/
*.py[cod]

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
# C extensions
*.so

# Environments
.env
.venv
# Distribution / packaging
.Python
.venv/
env/
venv/
ENV/
env.bak/
venv.bak/
bin/
lib64
pyvenv.cfg
build/
develop-eggs/
dist/
eggs/
lib/
lib64/
parts/
sdist/
var/
include/
man/
venv/
*.egg-info/
.installed.cfg
*.egg

# Installer logs
pip-log.txt
pip-delete-this-directory.txt
pip-selfcheck.json

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# -----------------------------------
# Files
# -----------------------------------
# Translations
*.mo

*.db
*.pyc
.vscode/
__pycache__/
dist/
build/
# Mr Developer
.mr.developer.cfg
.project
.pydevproject

# Rope
.ropeproject

# Django stuff:
*.log
*.pot

.DS_Store

# Sphinx documentation
docs/_build/

# -----------------------------------
# IDE
# -----------------------------------
# PyCharm
.idea/
# -----------------------------------
# Rust
# -----------------------------------
/target/
Cargo.lock
# -----------------------------------
# Packaging
# -----------------------------------
*.egg-info/
*.egg
.eggs/
*.so
/build/
# -----------------------------------
# server tests
# -----------------------------------

# VSCode
.vscode/

# Pyenv
.build/

# Server tests
integration_tests/flask/app/surreal.py/
integration_tests/package-lock.json
integration_tests/node_modules/
Loading