Skip to content

Commit

Permalink
Update sip to v6.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
swt2c committed Jul 7, 2024
1 parent 50d93a7 commit fd8781c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion buildtools/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -1065,7 +1065,7 @@ def updateLicenseFiles(cfg):
# Combine the relevant files into a single LICENSE.txt file
text = ''
for filename in ['preamble.txt', 'licence.txt', 'lgpl.txt', 'sip-license.txt']:
with open(opj('license', filename), 'r') as f:
with open(opj('license', filename), 'r', encoding='utf-8') as f:
text += f.read() + '\n\n'
with open('LICENSE.txt', 'w') as f:
f.write(text)
Expand Down
2 changes: 1 addition & 1 deletion requirements/devel.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
appdirs
setuptools < 45 ; python_version < '3.0'
setuptools ; python_version >= '3.0'
sip == 6.8.3
sip == 6.8.5

wheel
twine
Expand Down
1 change: 0 additions & 1 deletion wscript
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,6 @@ def build(bld):
features = 'c cxx cshlib cxxshlib pyext',
target = makeTargetName(bld, 'siplib'),
source = ['sip/siplib/apiversions.c',
'sip/siplib/bool.cpp',
'sip/siplib/descriptors.c',
'sip/siplib/int_convertors.c',
'sip/siplib/objmap.c',
Expand Down

0 comments on commit fd8781c

Please sign in to comment.