Skip to content

Commit

Permalink
Make py-3.8 minimum supported version
Browse files Browse the repository at this point in the history
  • Loading branch information
mmourafiq committed Sep 28, 2023
1 parent 6e73fd0 commit a6cbe24
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/vents.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, '3.10', '3.11']
python-version: [3.8, 3.9, '3.10', '3.11']
steps:
- run: |
pip install -U vents
Expand All @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, '3.10', '3.11']
python-version: [3.8, 3.9, '3.10', '3.11']

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion vents/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def run_tests(self):
],
install_requires=requirements,
extras_require=extra,
python_requires=">=3.7",
python_requires=">=3.8",
classifiers=[
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
Expand Down

0 comments on commit a6cbe24

Please sign in to comment.