diff --git a/.github/workflows/unit-tests.yaml b/.github/workflows/unit-tests.yaml index 52ea0144..9dab220e 100644 --- a/.github/workflows/unit-tests.yaml +++ b/.github/workflows/unit-tests.yaml @@ -14,16 +14,16 @@ jobs: matrix: # TODO: add macos-latest os: [ubuntu-latest] - python-version: [3.8, 3.9, "3.10", "3.11"] + python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12", "3.13"] exclude: - os: macos-latest python-version: [3.5, 3.6] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} @@ -35,7 +35,7 @@ jobs: - name: Install Python3 dependencies run: | - python -m pip install --upgrade pip pytest + python -m pip install --upgrade pip pytest setuptools pip install -r requirements.txt python -m pip install --upgrade --force-reinstall git+https://github.com/LLNL/hatchet.git@develop python setup.py install diff --git a/requirements.txt b/requirements.txt index 07f51184..05a3ef2c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,3 +6,4 @@ extrap matplotlib seaborn beautifulsoup4 +more-itertools