Skip to content

Commit

Permalink
Applied updates (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz authored Apr 7, 2024
1 parent a3fb72a commit ee644e2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 12 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
strategy:
matrix:
include:
- python-version: '3.11'
toxenv: 'py311'
- python-version: '3.12'
toxenv: 'py312'
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -21,6 +21,7 @@ jobs:
brew install -q autoconf automake gettext gnu-sed pkgconfig python@${{ matrix.python-version }} tox
brew link --force gettext
ln -s /usr/local/bin/glibtoolize /usr/local/bin/libtoolize
python3 -m pip install setuptools
- name: Build and test Python module
run: |
python setup.py update
Expand All @@ -32,8 +33,6 @@ jobs:
strategy:
matrix:
include:
- python-version: '3.7'
toxenv: 'py37'
- python-version: '3.8'
toxenv: 'py38'
- python-version: '3.9'
Expand Down Expand Up @@ -65,14 +64,17 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python-version: ['3.11']
python-version: ['3.12']
architecture: ['x86', 'x64']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install build dependencies
run: |
python3 -m pip install setuptools
- name: Build Python module
run: |
python setup.py update
Expand Down
8 changes: 1 addition & 7 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,4 @@ classifiers =
Programming Language :: Python

[options]
python_requires = >=3.7

[bdist_rpm]
release = 1
packager = Joachim Metz <joachim.metz@gmail.com>
doc_files = LICENSE sleuthkit/licenses/cpl1.0.txt sleuthkit/licenses/IBM-LICENSE README
build_requires = python-setuptools
python_requires = >=3.8

0 comments on commit ee644e2

Please sign in to comment.