Skip to content

Update CHANGES.txt

Update CHANGES.txt #2

Workflow file for this run

# Testing on linux, windows, macos, for python versions 3.7, 3.8, 3.9, 3.10, 3.11, 3.12
name: Test pip install
on:
- push
- pull_request
jobs:
build:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
runs-on: ${{ matrix.os }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Version check
run: python --version
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install "Cython>=0.29.23" "coveralls" "py-stringmatching"
- name: Install package
run: |
python setup.py sdist
pip install dist/py-stringsimjoin-0.3.5.tar.gz