Skip to content

Commit 6d6995c

Browse files
committed
v3.4.4
1 parent d13e6f4 commit 6d6995c

File tree

4 files changed

+15
-10
lines changed

4 files changed

+15
-10
lines changed

.github/workflows/wheel.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ on:
44
workflow_dispatch:
55

66
env:
7-
OPENSSL_VER: openssl-1.1.1t
7+
OPENSSL_VER: openssl-1.1.1w
88
OPENLDAP_VER: openldap-2.4.59
9-
PYTHONLDAP_VER: python-ldap-3.4.3
9+
PYTHONLDAP_VER: python-ldap-3.4.4
1010
CIBW_TEST_COMMAND: python -c"import ldap;print(ldap.__version__)"
1111
CIBW_SKIP: "pp* cp36*"
1212
MSBUILDTREATHIGHERTOOLSVERSIONASCURRENT: 1
@@ -22,7 +22,7 @@ jobs:
2222
VS_PLATFORM: x64
2323
OPENSSL_CONFIG: VC-WIN64A-masm
2424
steps:
25-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v4
2626
- uses: microsoft/[email protected]
2727
with:
2828
msbuild-architecture: x64
@@ -35,7 +35,7 @@ jobs:
3535
shell: cmd
3636
- run: build_python-ldap.cmd
3737
shell: cmd
38-
- uses: pypa/cibuildwheel@v2.12.3
38+
- uses: pypa/cibuildwheel@v2.16.2
3939
env:
4040
CIBW_ARCHS_WINDOWS: AMD64
4141
- uses: actions/upload-artifact@v3
@@ -51,7 +51,7 @@ jobs:
5151
VS_PLATFORM: Win32
5252
OPENSSL_CONFIG: VC-WIN32
5353
steps:
54-
- uses: actions/checkout@v3
54+
- uses: actions/checkout@v4
5555
- uses: microsoft/[email protected]
5656
with:
5757
msbuild-architecture: x86
@@ -65,7 +65,7 @@ jobs:
6565
shell: cmd
6666
- run: build_python-ldap.cmd
6767
shell: cmd
68-
- uses: pypa/cibuildwheel@v2.12.3
68+
- uses: pypa/cibuildwheel@v2.16.2
6969
env:
7070
CIBW_ARCHS_WINDOWS: x86
7171
- uses: actions/upload-artifact@v3
@@ -82,7 +82,7 @@ jobs:
8282
# VS_PLATFORM: ARM64
8383
# OPENSSL_CONFIG: VC-WIN64-ARM
8484
# steps:
85-
# - uses: actions/checkout@v3
85+
# - uses: actions/checkout@v4
8686
# - uses: microsoft/[email protected]
8787
# with:
8888
# msbuild-architecture: arm64
@@ -91,7 +91,7 @@ jobs:
9191
# arch: amd64_arm64
9292
# - run: build.cmd
9393
# shell: cmd
94-
# - uses: pypa/cibuildwheel@v2.12.3
94+
# - uses: pypa/cibuildwheel@v2.16.2
9595
# env:
9696
# CIBW_SKIP: "pp* cp36* cp37* cp38* cp39* cp310*"
9797
# CIBW_ARCHS_WINDOWS: ARM64

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# python-ldap-build
2+
23
Build [python-ldap](https://github.com/python-ldap/python-ldap) wheels for Windows using [GitHub Actions](https://github.com/cgohlke/python-ldap-build/actions/workflows/wheel.yml).
34

45
The wheels can be downloaded from the [Releases](https://github.com/cgohlke/python-ldap-build/releases) page.
6+
7+
Install a wheel on the command line, for example for Python 3.11 64-bit:
8+
9+
py.exe -3.11 -m pip install python_ldap-3.4.4-cp311-cp311-win_amd64.whl

build_openssl.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
@echo on
33
setlocal
44

5-
:: set OPENSSL_VER=openssl-1.1.1t
5+
:: set OPENSSL_VER=openssl-1.1.1w
66
:: set OPENSSL_CONFIG=VC-WIN64A-masm
77
:: set PATH=%PATH%;X:\Perl\bin
88

build_python-ldap.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
@echo on
33
setlocal
44

5-
:: set PYTHONLDAP_VER=python-ldap-3.4.3
5+
:: set PYTHONLDAP_VER=python-ldap-3.4.4
66

77
curl -L -o %PYTHONLDAP_VER%.tar.gz https://github.com/python-ldap/python-ldap/archive/refs/tags/%PYTHONLDAP_VER%.tar.gz
88
if errorlevel 1 exit /B 1

0 commit comments

Comments
 (0)