Skip to content

Commit

Permalink
Add new python 3.12 workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
aphearin committed Nov 1, 2023
1 parent f9c5a39 commit 5742b2f
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/test_py312.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: tests

on:
workflow_dispatch: null
push:
branches:
- main
pull_request: null

jobs:
tests:
name: tests
runs-on: "ubuntu-latest"

steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0

- uses: conda-incubator/setup-miniconda@v2
with:
python-version: 3.12
channels: conda-forge,defaults
channel-priority: strict
show-channel-urls: true
miniforge-version: latest
miniforge-variant: Mambaforge
use-mamba: true

- name: configure conda and install code
# Test against latest releases of each code in the dependency chain
shell: bash -l {0}
run: |
conda config --set always_yes yes
mamba install --quiet \
--file=requirements.txt
mamba install -y -q \
flake8 \
pytest \
pytest-xdist \
pytest-cov \
pip \
setuptools \
"setuptools_scm>=7,<8" \
python-build \
flake8-pyproject
python -m pip install --no-build-isolation --no-deps -e .
- name: test
shell: bash -l {0}
run: |
pytest -v halotools
7 changes: 7 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
astropy
numpy
scipy
requests
beautifulsoup4
cython
h5py

0 comments on commit 5742b2f

Please sign in to comment.