Skip to content

Commit

Permalink
towards new namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
laszewsk committed Dec 16, 2023
1 parent 6b9453e commit 937d94c
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 1 deletion.
14 changes: 14 additions & 0 deletions README-python.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Python INstalation

## Python 3.12.1

```bash
local>
wget https://www.python.org/ftp/python/3.12.1/Python-3.12.1.tar.xz
tar xvf Python-3.12.1.tar.xz
cd Python-3.12.1/
./configure --enable-optimizations
sudo make -j16 && sudo make altinstall
python3.12 --version && pip3.12 --version
```

4 changes: 4 additions & 0 deletions bin/install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#cd cloudmesh-common
#pip install -e .
#cd ..
make local
7 changes: 7 additions & 0 deletions bin/py3.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
rm -rf ~/ENVx
python3.12 -m venv ~/ENVx
pip install pip -U
pip install setuptools
source ~/ENVx/bin/activate
which python
python --version
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name = "cloudmesh-common"
version = "5.0.20"
description = "A set of useful APIs for cloudmesh"
readme = "README.md"
requires-python = ">=3.11"
requires-python = ">=3.12"
license = {file = "LICENSE"}
authors = [
{name = "Gregor von Laszewski", email = "[email protected]"}
Expand Down Expand Up @@ -64,7 +64,9 @@ dependencies = [
"pywin32; platform_system == 'Windows'",
"pyuac; platform_system == 'Windows'"
]

[project.urls]
"Documentation" = "https://github.com/cloudmesh/cloudmesh-common"

[tool.setuptools.packages.find]
exclude = ["deprecated", "deprecated.**", "tests", "tests.*", "examples"]

0 comments on commit 937d94c

Please sign in to comment.