Skip to content

Commit

Permalink
Applied updates
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz committed Nov 6, 2023
1 parent 6db8799 commit fb04d45
Show file tree
Hide file tree
Showing 6 changed files with 83 additions and 83 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ install:
.\builddokan.ps1 -Configuration ${Configuration} -Platform "x64"; }
}
- sh: if test ${BUILD_ENVIRONMENT} = "python-tox" || test ${BUILD_ENVIRONMENT} = "xcode"; then brew update-reset && brew update -q; fi
- sh: if test ${BUILD_ENVIRONMENT} = "python-tox" || test ${BUILD_ENVIRONMENT} = "xcode"; then brew install -q autoconf automake gettext gnu-sed libtool openssl pkg-config || true; fi
- sh: if test ${BUILD_ENVIRONMENT} = "python-tox" || test ${BUILD_ENVIRONMENT} = "xcode"; then brew install -q autoconf automake gettext gnu-sed libtool openssl osxfuse pkg-config || true; fi
- sh: if test ${BUILD_ENVIRONMENT} = "python-tox"; then brew install -q python@${PYTHON_VERSION} tox twine-pypi || true; fi
- cmd: if [%BUILD_ENVIRONMENT%]==[python] (
"%PYTHON%" -m pip install -U pip setuptools twine wheel )
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ AC_PREREQ([2.71])

AC_INIT(
[libbde],
[20231103],
[20231106],
[joachim.metz@gmail.com])

AC_CONFIG_SRCDIR(
Expand Down
4 changes: 2 additions & 2 deletions libbde.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<package >
<metadata>
<id>libbde</id>
<version>20231103</version>
<version>20231106</version>
<authors>Joachim Metz</authors>
<owners>joachimmetz</owners>
<license type="expression">LGPL-3.0-or-later</license>
<projectUrl>https://github.com/libyal/libbde</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<title>libbde</title>
<description>Library to access the BitLocker Drive Encryption (BDE) format</description>
<releaseNotes>Release of libbde 20231103</releaseNotes>
<releaseNotes>Release of libbde 20231106</releaseNotes>
<copyright>Copyright (C) 2011-2023</copyright>
<tags>native</tags>
</metadata>
Expand Down
8 changes: 4 additions & 4 deletions tests/pybde_test_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def test_get_version(self):

def test_check_volume_signature(self):
"""Tests the check_volume_signature function."""
test_source = getattr(unittest, 'source', None)
test_source = getattr(unittest, "source", None)
if not test_source:
raise unittest.SkipTest("missing source")

Expand All @@ -46,7 +46,7 @@ def test_check_volume_signature(self):

def test_check_volume_signature_file_object(self):
"""Tests the check_volume_signature_file_object function."""
test_source = getattr(unittest, 'source', None)
test_source = getattr(unittest, "source", None)
if not test_source:
raise unittest.SkipTest("missing source")

Expand All @@ -56,7 +56,7 @@ def test_check_volume_signature_file_object(self):

def test_open(self):
"""Tests the open function."""
test_source = getattr(unittest, 'source', None)
test_source = getattr(unittest, "source", None)
if not test_source:
raise unittest.SkipTest("missing source")

Expand All @@ -73,7 +73,7 @@ def test_open(self):

def test_open_file_object(self):
"""Tests the open_file_object function."""
test_source = getattr(unittest, 'source', None)
test_source = getattr(unittest, "source", None)
if not test_source:
raise unittest.SkipTest("missing source")

Expand Down
Loading

0 comments on commit fb04d45

Please sign in to comment.