Skip to content

Upgrade to nltk 3.9.1 to address CVE-2024-39705 #104

Upgrade to nltk 3.9.1 to address CVE-2024-39705

Upgrade to nltk 3.9.1 to address CVE-2024-39705 #104

Workflow file for this run

name: build_all_os
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: '11'
- name: Install valentine
run: pip install .
- name: Install test dependencies
run: pip install pytest==8.2.0
- name: Run tests
run: python -m unittest discover tests