Skip to content

Commit 68aacbe

Browse files
Merge pull request #22 from SpaciousCoder78/development
fix: removed strict python3 versioning requirement
2 parents ef520c6 + 044224b commit 68aacbe

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
ubuntu: main.c
55
sudo apt install pip
66
sudo apt install pipenv
7-
pipenv install --python 3.13
7+
pipenv install --python python3
88
pipenv run pip3 install -r requirements.txt
99
pipenv install PyInstaller
1010
sudo gcc main.c -o /usr/local/bin/QuickOverflow
@@ -18,7 +18,7 @@ arch_linux: main.c
1818
chmod +x search.py
1919
sudo pacman -S python-pipenv
2020
sudo pacman -S pyenv
21-
pipenv install --python 3.13
21+
pipenv install --python python3
2222
pipenv install pyinstaller
2323
# Removed pipenv shell to prevent build interruption
2424
pipenv run pip3 install -r requirements.txt

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ pyinstaller = "*"
1010
[dev-packages]
1111

1212
[requires]
13-
python_version = "3.13"
13+
python_version = "3"

0 commit comments

Comments
 (0)