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
4 changes: 3 additions & 1 deletion .github/workflows/publish_to_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ jobs:
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install uv
uses: astral-sh/setup-uv@v5

- name: Set up Python
uses: actions/setup-python@v2
Expand All @@ -18,7 +20,7 @@ jobs:

- name: Install dependencies
run: |
pip install .
uv pip install .[dev]
- name: Publish hep_ml to PyPi
env:
TWINE_USERNAME: "__token__"
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,18 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.9]
python-version: [3.9, 3.13]

steps:
- uses: actions/checkout@v2
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: install dependencies
run: pip install numpy scipy six pandas scikit-learn nose -q
run: uv pip install --system .[test] -q
- name: Run tests
run: |
pip install . && nosetests tests
nosetests tests
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Changelog


## [Unreleased]

### Major Changes
- Support for Python 3.9 up to 3.13.

### Breaking Changes
- Removed `hep_ml.nnet` module, which was based on Theano. Users are encouraged to use PyTorch, JAX, TensorFlow and similar for neural networks.
- Removed support for Python 3.8 and earlier versions.
Loading