From 95c707fda655a7b5e1e33621fe054e4c2d8204e3 Mon Sep 17 00:00:00 2001 From: Simon Birkholz Date: Wed, 5 Mar 2025 16:01:22 +0100 Subject: [PATCH] updated version number --- README.md | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e573bf9..bb65f79 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ pip install cuvis ``` or add `cuvis` to your project `requirements.txt` or `setup.py`. -We currently provide pre-compiled binaries for Python 3.9, 3.10, 3.11 and 3.12 for Windows, Ubuntu 20.04 and Ubuntu 22.04 (all 64-bit). +We currently provide pre-compiled binaries for Python 3.9, 3.10, 3.11, 3.12 and 3.13 for Windows, Ubuntu 20.04 and Ubuntu 22.04 (all 64-bit). To access the newest python cuvis version (for use with SDK beta versions, etc) you can install it with diff --git a/setup.py b/setup.py index 610b234..4cec77b 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ here = os.path.abspath(os.path.dirname(__file__)) NAME = 'cuvis' -VERSION = '3.3.1rc1' +VERSION = '3.3.1' DESCRIPTION = 'CUVIS Python SDK.' @@ -23,7 +23,7 @@ # Installation dependencies # Use with pip install . to install from source 'install': [ - 'cuvis-il>=3.3.0,<=3.3.0.post999999', + 'cuvis-il>=3.3.1,<=3.3.1.post999999', ], }