Skip to content

Commit d100a00

Browse files
committed
Revert venv.sh and pyproject.toml to match main
1 parent 86c1c3f commit d100a00

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Efficient LLM inference on Slurm clusters using vLLM."
55
readme = "README.md"
66
authors = [{name = "Marshall Wang", email = "marshall.wang@vectorinstitute.ai"}]
77
license = "MIT"
8-
requires-python = ">=3.10,<4.0"
8+
requires-python = ">=3.10"
99
dependencies = [
1010
"requests>=2.31.0",
1111
"click>=8.1.0",

venv.sh

100755100644
Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
#!/bin/bash
1+
#!bin/bash
22

33
# Load python module if you are on Vector cluster and install poetry
44
module load python/3.10.12
5-
pip3 install poetry
5+
pip install poetry
66

77
# Optional: it's recommended to change the cache directory to somewhere in the scratch space to avoid
88
# running out of space in your home directory, below is an example for the Vector cluster
@@ -13,14 +13,11 @@ export POETRY_CACHE_DIR=/scratch/ssd004/scratch/$(whoami)/poetry_cache
1313
# poetry config cache-dir
1414
echo "Cache directory set to: $(poetry config cache-dir)"
1515

16-
echo "📜 Telling Poetry to use Python 3.10..."
17-
poetry env use python3.10
18-
1916
# Install dependencies via poetry
2017
poetry install
2118

2219
# Activate the virtual environment
23-
# poetry shell
20+
poetry shell
2421

2522
# Deactivate the virtual environment
2623
# deactivate

0 commit comments

Comments
 (0)