diff --git a/README.md b/README.md index aed92ab..b957888 100644 --- a/README.md +++ b/README.md @@ -22,15 +22,15 @@ To install the _pymm_ executable from the development version: pip install git+https://github.com/cssr-tools/pymm.git ``` -If you are interested in a specific version (e.g., v2024.10) or in modifying the source code, then you can clone the repository and install the Python requirements in a virtual environment with the following commands: +If you are interested in a specific version (e.g., v2025.10) or in modifying the source code, then you can clone the repository and install the Python requirements in a virtual environment with the following commands: ```bash # Clone the repo git clone https://github.com/cssr-tools/pymm.git # Get inside the folder cd pymm -# For a specific version (e.g., v2025.04), or skip this step (i.e., edge version) -git checkout v2025.04 +# For a specific version (e.g., v2025.10), or skip this step (i.e., edge version) +git checkout v2025.10 # Create virtual environment (to specific Python, python3.12 -m venv vpycopm) python3 -m venv vpymm # Activate virtual environment diff --git a/docs/_sources/installation.rst.txt b/docs/_sources/installation.rst.txt index 405b84e..1263d9a 100644 --- a/docs/_sources/installation.rst.txt +++ b/docs/_sources/installation.rst.txt @@ -16,7 +16,7 @@ To install the **pymm** executable from the development version: pip install git+https://github.com/cssr-tools/pymm.git -If you are interested in a specific version (e.g., v2024.10) or in modifying the source code, then you can clone the repository and +If you are interested in a specific version (e.g., v2025.10) or in modifying the source code, then you can clone the repository and install the Python requirements in a virtual environment with the following commands: .. code-block:: console @@ -25,8 +25,8 @@ install the Python requirements in a virtual environment with the following comm git clone https://github.com/cssr-tools/pymm.git # Get inside the folder cd pymm - # For a specific version (e.g., v2024.10), or skip this step (i.e., edge version) - git checkout v2024.10 + # For a specific version (e.g., v2025.10), or skip this step (i.e., edge version) + git checkout v2025.10 # Create virtual environment (to specific Python, python3.12 -m venv vpymm) python3 -m venv vpymm # Activate virtual environment diff --git a/docs/installation.html b/docs/installation.html index 82063d5..6f47a31 100644 --- a/docs/installation.html +++ b/docs/installation.html @@ -97,14 +97,14 @@
pip install git+https://github.com/cssr-tools/pymm.git
If you are interested in a specific version (e.g., v2024.10) or in modifying the source code, then you can clone the repository and +
If you are interested in a specific version (e.g., v2025.10) or in modifying the source code, then you can clone the repository and install the Python requirements in a virtual environment with the following commands:
# Clone the repo
git clone https://github.com/cssr-tools/pymm.git
# Get inside the folder
cd pymm
-# For a specific version (e.g., v2024.10), or skip this step (i.e., edge version)
-git checkout v2024.10
+# For a specific version (e.g., v2025.10), or skip this step (i.e., edge version)
+git checkout v2025.10
# Create virtual environment (to specific Python, python3.12 -m venv vpymm)
python3 -m venv vpymm
# Activate virtual environment
diff --git a/docs/text/installation.rst b/docs/text/installation.rst
index 405b84e..1263d9a 100644
--- a/docs/text/installation.rst
+++ b/docs/text/installation.rst
@@ -16,7 +16,7 @@ To install the **pymm** executable from the development version:
pip install git+https://github.com/cssr-tools/pymm.git
-If you are interested in a specific version (e.g., v2024.10) or in modifying the source code, then you can clone the repository and
+If you are interested in a specific version (e.g., v2025.10) or in modifying the source code, then you can clone the repository and
install the Python requirements in a virtual environment with the following commands:
.. code-block:: console
@@ -25,8 +25,8 @@ install the Python requirements in a virtual environment with the following comm
git clone https://github.com/cssr-tools/pymm.git
# Get inside the folder
cd pymm
- # For a specific version (e.g., v2024.10), or skip this step (i.e., edge version)
- git checkout v2024.10
+ # For a specific version (e.g., v2025.10), or skip this step (i.e., edge version)
+ git checkout v2025.10
# Create virtual environment (to specific Python, python3.12 -m venv vpymm)
python3 -m venv vpymm
# Activate virtual environment
diff --git a/pyproject.toml b/pyproject.toml
index 9d99128..d82331d 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -22,10 +22,10 @@ classifiers = [
"Operating System :: OS Independent"
]
dependencies = [
- "alive_progress",
- "ipython",
- "mako",
- "porespy"
+ "alive_progress<=3.3.0",
+ "ipython<=9.6.0",
+ "mako<=1.3.10",
+ "porespy<=2.4.3"
]
requires-python = ">=3.12"
diff --git a/src/pymm/__init__.py b/src/pymm/__init__.py
index eadaca8..f843d84 100644
--- a/src/pymm/__init__.py
+++ b/src/pymm/__init__.py
@@ -2,4 +2,4 @@
Code version.
"""
-__version__ = "2025.10-pre"
+__version__ = "2025.10"