Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v3.9.0 #36

Merged
merged 4 commits into from
Nov 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
tag: ${{ steps.get_version.outputs.TAG }}
- uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.11'
- name: Create offline pip packages
env:
VERSION: ${{ steps.get_version.outputs.TAG }}
Expand All @@ -42,13 +42,10 @@ jobs:
pip download --only-binary=:all: \
-d pip_packages \
--platform win_amd64 \
--python-version 3.10.11 --abi cp310 -r requirements.txt
--python-version 3.11.6 --abi cp311 -r requirements.txt
cp -rf requirements.txt pip_packages
zip -r pip_packages.zip pip_packages
mkdir -p build && mv pip_packages.zip build
pip install pyyaml
bash get_source.sh
python build.py
ls -l build
- name: Release Upload Assets
uses: softprops/action-gh-release@v1
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10-slim-bullseye as stage-build
FROM python:3.11-slim-bullseye as stage-build
ARG TARGETARCH
ARG PIP_MIRROR=https://pypi.tuna.tsinghua.edu.cn/simple
ARG APT_MIRROR=http://mirrors.ustc.edu.cn
Expand All @@ -22,7 +22,7 @@ RUN --mount=type=cache,target=/root/.cache/pip \
&& pip download --only-binary=:all: \
-d pip_packages \
--platform win_amd64 \
--python-version 3.10.11 --abi cp310 -r requirements.txt -i${PIP_MIRROR} \
--python-version 3.11.6 --abi cp311 -r requirements.txt -i${PIP_MIRROR} \
&& cp requirements.txt pip_packages \
&& zip -r pip_packages.zip pip_packages \
&& mv pip_packages.zip build
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ pywinauto==0.6.6
selenium==4.4.0
pywin32==304
PyYAML==6.0
cffi==1.16.0