remove max check #87
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: builds | |
on: | |
push: | |
branches: main | |
pull_request: | |
branches: main | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python: ["3.9", "3.10"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
# MacOS issue ref.: https://github.com/actions/setup-python/issues/855 & https://github.com/actions/setup-python/issues/865 | |
python-version: ${{ matrix.os == 'macos-latest' && '3.11' || matrix.python }} | |
architecture: x64 | |
- name: Cache python modules | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pkg-deps-${{ matrix.python }}-${{ hashFiles('pyproject.toml') }} | |
- name: Install package | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e .[cpu,viz] --upgrade | |
- name: Import package | |
run: python -c "import onnxtr; print(onnxtr.__version__)" | |
conda: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
auto-update-conda: true | |
python-version: 3.9 | |
channels: pypdfium2-team,bblanchon,defaults,conda-forge | |
channel-priority: strict | |
- name: Install dependencies | |
shell: bash -el {0} | |
run: conda install -y conda-build conda-verify anaconda-client | |
- name: Build and verify | |
shell: bash -el {0} | |
run: | | |
python setup.py sdist | |
mkdir conda-dist | |
conda build .conda/ --output-folder conda-dist | |
conda-verify conda-dist/linux-64/*tar.bz2 --ignore=C1115 |