main #4

Merged
tpd94 merged 8 commits from main into beta 2025-04-27 00:40:20 +00:00
2 changed files with 5 additions and 5 deletions
Showing only changes of commit c55b56ccb0 - Show all commits

View File

@ -4,7 +4,7 @@
## Prerequisites (from source only) ## Prerequisites (from source only)
- [Python](https://www.python.org/downloads/) version [3.13](https://www.python.org/downloads/release/python-3130/?featured_on=pythonbytes)+ with PIP and VENV installed - [Python](https://www.python.org/downloads/) version [3.12](https://www.python.org/downloads/release/python-3120/)+ with PIP and VENV installed
> Python 3.13 was used at the time of writing > Python 3.13 was used at the time of writing
@ -12,7 +12,7 @@
- Extract contents of CDRM-Project 2.0 git contents into a new folder - Extract contents of CDRM-Project 2.0 git contents into a new folder
- Open a terminal and change directory into the new folder - Open a terminal and change directory into the new folder
- Run `python main.py` - Run `python main.py`
- Follow the on screen prompts - Follow the on-screen prompts
## Installation (From binary) ## Installation (From binary)
- Download the latest release from the [releases](https://cdm-project.com/tpd94/CDRM-Project/releases) page and run the `.exe` - Download the latest release from the [releases](https://cdm-project.com/tpd94/CDRM-Project/releases) page and run the `.exe`

View File

@ -8,12 +8,12 @@ def version_check():
minor_version = sys.version_info.minor minor_version = sys.version_info.minor
if major_version >= 3: if major_version >= 3:
if minor_version >= 13: if minor_version >= 12:
return return
else: else:
exit("Python version 3.13 or higher is required") exit("Python version 3.12 or higher is required")
else: else:
exit("Python 2 detected, Python version 3.13 or higher is required") exit("Python 2 detected, Python version 3.12 or higher is required")
def pip_check(): def pip_check():
try: try: