Skip to content

Release 1.6.0

Release 1.6.0 #36

Workflow file for this run

name: PR Validation
on:
pull_request:
branches: [master]
permissions:
contents: read
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.13'
- name: Build package
run: |
pip install --upgrade build setuptools setuptools-scm twine
python -m build
twine check dist/*
- name: Test isolated installation
run: |
# Install the built wheel to ensure packaging didn't miss files
pip install dist/*.whl
python -c "import mailjet_rest; from importlib.metadata import version; print(f'Successfully installed v{version(\"mailjet_rest\")}')"