From 6424ecaaf51bf97b8b1b5de674af38fc612a911e Mon Sep 17 00:00:00 2001
From: Jan Benda <jan.benda@uni-tuebingen.de>
Date: Fri, 26 Apr 2024 22:24:40 +0200
Subject: [PATCH] fix

---
 README.md | 44 ++++++++++++++++++++++----------------------
 1 file changed, 22 insertions(+), 22 deletions(-)

diff --git a/README.md b/README.md
index f888791..ad67e49 100644
--- a/README.md
+++ b/README.md
@@ -172,30 +172,9 @@ And of course you can also import this function in `__init__.py` so
 that it can be imported from the package directly.
 
 
-## Distribute your package
-
-Full pyproject.toml file...
-
-README.md
-
-LICENSE
-
-[PyPi](https://pypi.org/)
-
-```sh
-python3 -m build
-```
-
-```sh
-python3 -m twine upload dist/*
-```
-
-token
-
-
 ## Versioning
 
-Your package needs a version number (for details se below). But how to
+Your package needs a version number (for details see below). But how to
 choose the right version number? A nice and brief overview is given at
 the [Python Packaging User
 Guide](https://packaging.python.org/en/latest/discussions/versioning/).
@@ -273,6 +252,27 @@ dynamic = ["version"]
 version = {attr = "numerix.__version__"}
 ```
 
+## Distribute your package
+
+Full pyproject.toml file...
+
+README.md
+
+LICENSE
+
+[PyPi](https://pypi.org/)
+
+```sh
+python3 -m build
+```
+
+```sh
+python3 -m twine upload dist/*
+```
+
+token
+
+
 ## Unit tests
 
 pytest