Skip to content

Commit

Permalink
chore(deps): enforce python_requires>=3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
YodaEmbedding committed Feb 2, 2024
1 parent a7cc18f commit a51ffea
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 10 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,11 @@ jobs:
strategy:
matrix:
python-version:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
include:
- os: "ubuntu-latest"
# no Python 3.6 in ubuntu>20.04.
- os: "ubuntu-20.04"
python-version: "3.6"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,11 @@ jobs:
strategy:
matrix:
python-version:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
include:
- os: "ubuntu-latest"
# no Python 3.6 in ubuntu>20.04.
- os: "ubuntu-20.04"
python-version: "3.6"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def get_extra_requirements():
author_email="compressai@interdigital.com",
packages=find_packages(exclude=("tests",)),
zip_safe=False,
python_requires=">=3.6",
python_requires=">=3.7",
install_requires=[
"einops",
"numpy",
Expand Down

0 comments on commit a51ffea

Please sign in to comment.