File tree Expand file tree Collapse file tree 2 files changed +14
-10
lines changed Expand file tree Collapse file tree 2 files changed +14
-10
lines changed Original file line number Diff line number Diff line change @@ -28,15 +28,19 @@ jobs:
2828 - name : npm build
2929 working-directory : ./frontend
3030 run : npm run build
31- - name : Set up Python 3.13
32- uses : actions/setup-python@v4
33- with :
34- python-version : 3.13
35- cache : pip
36- - name : Install pipenv
37- run : pip install pipenv
38- - name : pipenv to requirements.txt
39- run : pipenv requirements > infrastructure/requirements.txt
31+ # - name: Set up Python 3.13
32+ # uses: actions/setup-python@v5
33+ # with:
34+ # python-version: 3.13
35+ # cache: pip
36+ - name : Install uv
37+ uses : astral-sh/setup-uv@v5
38+ - name : Set up Python
39+ run : uv python install
40+ - name : Install the project
41+ run : uv sync --all-extras --dev
42+ - name : uv to requirements.txt
43+ run : uv export --project pyproject.toml --no-emit-project > infrastructure/requirements.txt
4044 - name : cdk diff
4145 uses : youyo/aws-cdk-github-actions@v2
4246 with :
Original file line number Diff line number Diff line change 11[project ]
22name = " pythonwa"
3- version = " 3.1.2 "
3+ version = " 3.1.3 "
44description = " PythonWA website"
55readme = " README.md"
66requires-python = " >=3.13"
You can’t perform that action at this time.
0 commit comments