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: 1 addition & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

name: Multi-Backend Tests

on:
Expand All @@ -16,15 +15,14 @@ defaults:
run:
shell: bash


jobs:
test:
name: Run Multi-Backend Tests

strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.10"] # we usually only need to test the oldest python version
python-version: ["3.10"] # we usually only need to test the oldest python version
backend: ["jax", "tensorflow", "torch"]

runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ complex to be described analytically.

## Install

We currently support Python 3.10 to 3.12. You can install the latest stable version from PyPI using:
We currently support Python 3.10 to 3.13. You can install the latest stable version from PyPI using:

```bash
pip install "bayesflow>=2.0"
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,18 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
description = "Amortizing Bayesian Inference With Neural Networks"
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }

requires-python = ">= 3.10, < 3.13"
requires-python = ">= 3.10, < 3.14"
dependencies = [
"keras >= 3.9",
"matplotlib",
"numpy >= 1.24, <2.0",
"numpy >= 1.24",
"pandas",
"scipy",
"seaborn",
Expand Down