From 2fc547ebc40de52b1f72888f9f2834eb0dd34927 Mon Sep 17 00:00:00 2001 From: Anna Wendler <106674756+annawendler@users.noreply.github.com> Date: Mon, 18 May 2026 10:41:54 +0200 Subject: [PATCH] adapt for upload to test pypi --- .github/workflows/pypi.yml | 10 +++++----- pyproject.toml | 3 ++- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 81d32b0dba..ac9f327e7e 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -1,9 +1,9 @@ name: PyPI -on: - release: - types: - - published +on: [pull_request] + # release: + # types: + # - published jobs: @@ -59,4 +59,4 @@ jobs: with: skip-existing: true # To test uploads to TestPyPI, uncomment the following: - # repository-url: https://test.pypi.org/legacy/ + repository-url: https://test.pypi.org/legacy/ diff --git a/pyproject.toml b/pyproject.toml index 700e294c30..a6ad61fc3a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,8 @@ # Note that this file is only installing the memilio-simulation package. For installing the other Python packages, # please go to the respective folder pycode/memilio-* and install from there. name = "memilio-simulation" -dynamic = ["version"] +# dynamic = ["version"] +version = "3.4.0" description = "Part of MEmilio project, Python bindings to the C++ libraries that contain the models and simulations." readme = "README.md" requires-python = ">=3.9"