Skip to content

Commit

Permalink
Merge pull request #287 from tryolabs/deprecate-3.7
Browse files Browse the repository at this point in the history
Drop support for python 3.7
  • Loading branch information
aguscas authored Jan 30, 2024
2 parents 9b315b4 + 9720dfe commit 2bd5c2e
Show file tree
Hide file tree
Showing 6 changed files with 975 additions and 802 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
unit-tests:
runs-on: ubuntu-20.04
strategy:
max-parallel: 4
max-parallel: 3
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3

Expand Down Expand Up @@ -96,9 +96,9 @@ jobs:
needs: [build]
runs-on: ubuntu-20.04
strategy:
max-parallel: 4
max-parallel: 3
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10"]
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: "3.7"
python-version: "3.8"
- name: Setup a user for the commits
run: |
git config user.name ci-bot
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Norfair is built, used and maintained by [Tryolabs](https://tryolabs.com).

## Installation

Norfair currently supports Python 3.7+.
Norfair currently supports Python 3.8+. The last version to support Python 3.7 was [Norfair 2.2.0](https://github.com/tryolabs/norfair/releases/tag/v2.2.0).

For the minimal version, install as:

Expand Down
Loading

0 comments on commit 2bd5c2e

Please sign in to comment.