From bf94a706e8e1ad07993a42081aabd2a618d9a864 Mon Sep 17 00:00:00 2001 From: Daniel Utt Date: Mon, 29 Apr 2024 17:44:17 +0200 Subject: [PATCH] Bump version --- .github/workflows/python-tests.yml | 4 ++-- pyproject.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 9cf0ad4..d6a2c44 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -20,13 +20,13 @@ jobs: os: [ubuntu-latest, macos-latest, windows-latest] python-version: ["3.8", "3.9", "3.10", "3.11"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install apt dependencies if: matrix.os == 'ubuntu-latest' run: | sudo apt install -y libegl1 libegl1-mesa libegl-mesa0 libgl1-mesa-glx libopengl0 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} cache: 'pip' diff --git a/pyproject.toml b/pyproject.toml index 129aac1..ae7bdff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,14 +4,14 @@ build-backend = "setuptools.build_meta" [project] name = "scoreBasedDenoising" -version = "2023.8" +version = "2024.1" description = "Score-based denoising for atomic structure identification - Iteratively subtract thermal noises or perturbations from atomic positions." keywords = ["ovito", "ovito-extension"] authors = [{ name = "Daniel Utt", email = "utt@ovito.org" }] maintainers = [{ name = "Daniel Utt", email = "utt@ovito.org" }] license = { text = "MIT" } readme = "README.md" -requires-python = ">=3.10" +requires-python = ">=3.8" dependencies = [ "ovito >= 3.9.1", "torch >= 1.11.0",