From 68b41bae852008ed78f311f9be7022e1abb2a3f4 Mon Sep 17 00:00:00 2001 From: Andrew Pontzen Date: Sun, 13 Oct 2024 20:20:17 +0100 Subject: [PATCH] Bump version number There is no actual code change, just a change to the pyproject.toml which fixes an issue with installing the wrong version of wgpu --- src/topsy/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/topsy/__init__.py b/src/topsy/__init__.py index 4c91221..704ee15 100644 --- a/src/topsy/__init__.py +++ b/src/topsy/__init__.py @@ -2,7 +2,7 @@ from __future__ import annotations -__version__ = "0.3.5" +__version__ = "0.3.6" import argparse import logging @@ -118,4 +118,4 @@ def _test(nparticle=config.TEST_DATA_NUM_PARTICLES_DEFAULT, **kwargs): vis = visualizer.Visualizer(data_loader_class=loader.TestDataLoader, data_loader_args=(nparticle,), **kwargs) - return vis \ No newline at end of file + return vis