Skip to content

Commit

Permalink
ci, setup: Python 3.8+ (#179)
Browse files Browse the repository at this point in the history
Signed-off-by: William Woodruff <william@trailofbits.com>
  • Loading branch information
woodruffw authored Sep 25, 2023
1 parent 17d3842 commit e96636e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ jobs:
matrix:
platform: ["ubuntu-latest", "macos-latest"]
python:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -147,10 +147,10 @@ jobs:
strategy:
matrix:
python:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.

from setuptools import setup, Extension
import os
import sys
import platform
import sys

from setuptools import Extension, setup

here = os.path.dirname(__file__)
pepy = os.path.join(here, "pepy")
Expand Down Expand Up @@ -87,7 +88,7 @@
setup(
name="pepy",
url="https://github.com/trailofbits/pe-parse",
python_requires=">=3.7",
python_requires=">=3.8",
version=VERSION,
description="Python bindings for pe-parse",
long_description=README,
Expand Down

0 comments on commit e96636e

Please sign in to comment.