442 Commits

Author SHA1 Message Date
Robin Dunn
b12d58aea8 Improve a comment, and comment-out some debug code. 2022-05-17 07:20:49 -07:00
Robin Dunn
9cd319734e Try the windows-2022 image on Azure, add some debug prints. 2022-05-16 20:35:57 -07:00
Robin Dunn
3218e4d42f Use MSVCinfo in the waf script to help set up the compiler for the wxPython build 2022-05-15 11:37:43 -07:00
Robin Dunn
685b9af718 Move setting the environment variables into getMSVCInfo 2022-05-15 10:40:51 -07:00
Robin Dunn
cadd91697c Switch to setuptools.msvc for getting setup info for the Windows compiler, reducing dependence on distutils. 2022-05-14 20:31:11 -07:00
Scott Talbert
130959f12b Update MS Edge version to latest 2022-05-02 22:34:13 -04:00
Robin Dunn
97e4461af9 Fix detection of default architecture 2021-12-17 14:31:15 -08:00
Robin Dunn
9627bb8035 Merge branch 'master' into update-wx 2021-12-13 21:40:18 -08:00
Robin Dunn
b528e68ead Force use of builtin libs on macOS, rather than any that might be found on the system 2021-12-03 08:42:17 -08:00
Robin Dunn
4488663deb A little cleanup and add 3.10 to list for runtime DLL selection 2021-12-02 16:15:39 -08:00
Robin Dunn
f1bc116047 fix indentation 2021-12-02 16:07:04 -08:00
Robin Dunn
7725f466e5 Some tweaks to fix multi-architecture builds on maxOS 2021-11-30 15:58:38 -08:00
Robin Dunn
f47014b2b7 Preset some complier flags for when waf does its test build in the configure stage 2021-11-30 15:49:58 -08:00
Robin Dunn
577e8d4714 Handle Python versions that have more than one digit in the minor component 2021-11-30 15:44:44 -08:00
Robin Dunn
9484fe66f1 update waf 2021-11-30 15:42:29 -08:00
Christian Clauss
25ba122168 Fix typos discovered by codespell 2021-08-07 18:55:49 +02:00
Robin Dunn
224630cf64 Add Config.SIP_TRACE flag 2021-01-07 13:43:11 -08:00
Robin Dunn
c385873d70 Add SIP_ABI to the config object 2021-01-05 11:11:26 -08:00
Robin Dunn
c8e25b79e1 Run SIP via its Python interface rather than as a separate subprocess 2021-01-05 11:01:25 -08:00
Robin Dunn
63b8099bc2 Enable building the docker-based builds with gtk2 (for those that support it.) 2020-11-25 13:12:18 -08:00
Robin Dunn
59673db44c Update webview2 DLLs and etc. to 1.0.622.22 2020-10-22 15:05:37 -07:00
Robin Dunn
2497454917 Add flag for turning off MS edge support, code to download the dev files, etc. 2020-10-13 13:18:09 -07:00
Robin Dunn
f96deee066 Add distributable DLLs for MS WebView2 2020-10-13 11:49:27 -07:00
Robin Dunn
b382df3382 reorganize some packaging subfolders 2020-10-12 15:53:24 -07:00
Robin Dunn
2e44b43121 Add Python 3.9 to the list 2020-10-09 10:04:33 -07:00
Robin Dunn
fbca74c826 Sip MD5s for Linux 2020-09-16 16:30:12 -07:00
Robin Dunn
ff4106cb9d Win32 MD5 for sip 2020-09-16 15:58:09 -07:00
Robin Dunn
257c06ba20 Update SIP to version 4.19.24, Darwin MD5 2020-09-16 15:50:26 -07:00
Robin Dunn
92f8cd2d55 Fix lots of misspelled words 2020-07-14 11:38:32 -07:00
Robin Dunn
961dda67ee Merge pull request #1699 from evils/delicious
build.py: append PYTHONPATH
2020-07-02 20:45:51 -07:00
Robin Dunn
4ac15dda3a Ensure that demo/version.py makes it into the source and demo archives 2020-07-02 16:41:35 -07:00
Evils
bf713425ac build.py: append PYTHONPATH
based on deliciouslytyped's commit by a similar name
2020-06-26 16:16:58 +02:00
Robin Dunn
c9ccff3d11 Add SIP MD5 hash for linux64 2020-06-17 15:32:28 -07:00
Robin Dunn
cd54afada9 Add SIP MD5 hash for linux 2020-06-17 15:29:24 -07:00
Robin Dunn
0c0d9ab27f Add SIP MD5 hash for Windows 2020-06-17 13:12:00 -07:00
Robin Dunn
6683c58747 Update SIP version and hash for Darwin 2020-06-17 13:01:06 -07:00
Robin Dunn
cc88ed14d9 Little fixes 2020-04-23 15:14:41 -07:00
Robin Dunn
7e58190020 Switch recent joins to posixjoins, use relpath with scp 2020-03-25 12:15:54 -07:00
Robin Dunn
386558c757 Fix tarfile filename problems due to changing when the CWD is changed 2020-03-24 12:52:59 -07:00
Robin Dunn
7a05d20d82 Merge pull request #1572 from pbrod/Fix_issue1571
Fixes issue 1571:
2020-03-23 16:07:22 -07:00
Robin Dunn
00640cab39 Merge pull request #1568 from pbrod/Fix_1553
Fixes issue #1553: Replace wait with communicate to avoid potential d…
2020-03-23 15:30:52 -07:00
Robin Dunn
52c00542eb Streamline fetching WX_CONFIG from the environment 2020-03-23 14:50:52 -07:00
Per A. Brodtkorb
e4e8bf8317 Fixes issue 1571:
Adding missing close for open.
If the "close()" call is missing after a "open(filename)" call, the filename isn't guaranteed to be closed before the interpreter exits.
This is generally a bad practice as explained here: https://stackoverflow.com/questions/7395542/is-explicitly-closing-files-important

Also replaced "fid=open(filename) fid.close()" statements for files with the safer
"with open(filename) as fid:" blocks. See https://www.python.org/dev/peps/pep-0343/
2020-03-23 17:16:44 +01:00
Per A. Brodtkorb
95d1df0383 Fixes issue #1553: Replace wait with communicate to avoid potential deadlock. 2020-03-23 11:16:33 +01:00
Robin Dunn
9b122237c9 if WX_CONFIG is set in the environment then use that instead of defaulting to "wx-config" 2020-03-20 15:25:34 -07:00
Robin Dunn
9f2cc54b48 Update copyright years 2020-03-10 11:41:39 -07:00
Robin Dunn
b17906cf89 Update waf to version 2.0.19 2020-01-23 12:56:19 -08:00
Robin Dunn
2244f954bb Use PY2 to check the Python version. 2019-12-12 20:05:57 -08:00
Robin Dunn
18b30fc2e6 Turn off using wx-dpi-aware.manifest for Python 2.7 builds 2019-12-12 12:18:54 -08:00
Robin Dunn
55a49495ac Set version and MD5s for sip 4.19.19 2019-11-08 19:36:25 -08:00