Skip to content

Commit

Permalink
updated python ver
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronSaikovski committed Nov 11, 2024
1 parent 0f35cee commit f17cb75
Show file tree
Hide file tree
Showing 3 changed files with 609 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ version: "3"

#ENV VARS
env:
PROJECT_PYTHON_VER: ">=3.12,<3.13"
PROJECT_PYTHON_VER: ">=3.12,<3.14"
PROJECT_NAME: "pystarter"
PROJECT_DESC: "a sample python project"
PROJECT_AUTHOR: "A User <auser@someorg.com>"
Expand All @@ -51,7 +51,7 @@ tasks:
cmds:
- poetry config virtualenvs.in-project true
- poetry init --name="$PROJECT_NAME" --description="$PROJECT_DESC" --author="$PROJECT_AUTHOR" --python="$PROJECT_PYTHON_VER" --license="$PROJECT_LICENSE" --no-interaction
- poetry env use python3.12
- poetry env use python3.13

###########################################################################

Expand Down Expand Up @@ -83,7 +83,7 @@ tasks:
## run - Run the script main.py
run:
desc: "Run the script main.py"
deps: [activate]
#deps: [activate]
cmds:
- poetry run python main.py

Expand Down
Loading

0 comments on commit f17cb75

Please sign in to comment.