Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed deprecated bdist_rpm setuptools configuration #100

Merged
merged 4 commits into from
Apr 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading