Skip to content

Commit

Permalink
Worked on Python 3.12 support
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz committed Sep 30, 2023
1 parent 2ca55f4 commit f5b419e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ jobs:
run: |
sudo add-apt-repository universe &&
sudo add-apt-repository -y ppa:deadsnakes/ppa &&
sudo add-apt-repository -y ppa:gift/dev &&
sudo apt-get update &&
sudo apt-get install -y autoconf automake autopoint build-essential git libtool pkg-config python${{ matrix.python-version }} python${{ matrix.python-version }}-dev python${{ matrix.python-version }}-venv python3-distutils python3-pip python3-setuptools
- name: Install tox
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@
*.trs
*.whl
/*.egg-info/
__pycache__
.deps
.dirstamp
.libs
.tox
__pycache__
INSTALL
Makefile
Makefile.bcc
Expand Down
3 changes: 1 addition & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ AC_PREREQ([2.71])

AC_INIT(
[liblnk],
[20230731],
[20230928],
[[email protected]])

AC_CONFIG_SRCDIR(
Expand Down Expand Up @@ -203,7 +203,6 @@ AC_CONFIG_FILES([dpkg/changelog])
AC_CONFIG_FILES([liblnk/liblnk.rc])
AC_CONFIG_FILES([liblnk.pc])
AC_CONFIG_FILES([liblnk.spec])
AC_CONFIG_FILES([setup.cfg])
dnl Generate a source configuration file
AC_CONFIG_HEADERS([common/config.h])

Expand Down
4 changes: 2 additions & 2 deletions liblnk.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<package >
<metadata>
<id>liblnk</id>
<version>20230731</version>
<version>20230928</version>
<authors>Joachim Metz</authors>
<owners>joachimmetz</owners>
<license type="expression">LGPL-3.0-or-later</license>
<projectUrl>https://github.com/libyal/liblnk</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<title>liblnk</title>
<description>Library to access the Windows Shortcut File (LNK) format</description>
<releaseNotes>Release of liblnk 20230731</releaseNotes>
<releaseNotes>Release of liblnk 20230928</releaseNotes>
<copyright>Copyright (C) 2009-2023</copyright>
<tags>native</tags>
</metadata>
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ deps =
setuptools
wheel
commands =
python -m pip wheel --no-build-isolation --wheel-dir=dist liblnk-python
python -m build --no-isolation --wheel --outdir=dist
python -m pip install --no-index --find-links=dist liblnk-python
python tests/runtests.py

0 comments on commit f5b419e

Please sign in to comment.