Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build_and_upload_wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

build_wheels_linux_3:
name: Build wheels for Linux
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4

Expand All @@ -37,7 +37,7 @@ jobs:

build_sdist:
name: Build sdist
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4

Expand All @@ -58,7 +58,7 @@ jobs:
# - build_wheels_macos_36_37
# - build_wheels_macos_38_plus
- build_sdist
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
steps:
- uses: actions/download-artifact@v4
Expand All @@ -83,7 +83,7 @@ jobs:
# - build_wheels_macos_36_37
# - build_wheels_macos_38_plus
- build_sdist
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
if: (github.event_name == 'release' && github.event.action == 'published') || github.event_name == 'workflow_dispatch'
steps:
- uses: actions/download-artifact@v4
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/pip-install-tester.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,8 @@ jobs:
strategy:
fail-fast: false
matrix:
# TODO: change ubuntu-20.04 back to ubuntu-latest when the following issue is resolved:
# https://github.com/actions/setup-python/issues/162
os: [ubuntu-20.04]
python-version: [3.6, 3.7, 3.8, 3.9]
os: [ubuntu-22.04]
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
hatchet-version: ["2022.2.0"]

steps:
Expand Down
11 changes: 1 addition & 10 deletions .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ jobs:
strategy:
matrix:
# TODO: add macos-latest
# TODO: change ubuntu-20.04 back to ubuntu-latest when the following issue is resolved:
# https://github.com/actions/setup-python/issues/162
os: [ubuntu-20.04]
os: [ubuntu-22.04]
# TODO: add pypy2, pypy3
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]

Expand Down Expand Up @@ -82,13 +80,6 @@ jobs:
echo -e "PWD:${PWD}"
which cali-query

# - name: Build Timemory for Python 3.6
# if: ${{ matrix.python-version == 3.6 }}
# run: |
# python -m pip install --upgrade scikit-build
# # python -m pip install --upgrade --no-cache-dir --no-deps -v --pre timemory --install-option=--disable-{c,gotcha,tools}
# python -m pip install --upgrade --no-cache-dir --no-deps -v timemory==3.2.0.dev4 --install-option=--disable-{c,gotcha,tools}

- name: Test Caliper and Timemory Support with pytest
run: |
PYTHONPATH=. $(which pytest) --cov=./ --cov-report=xml
Expand Down