Skip to content

Commit

Permalink
chore: Remove python 3.7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
xavier-owkin committed Jan 4, 2024
1 parent 695ec0e commit 34f8ed5
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
runs-on: ${{ matrix.os }}
matrix:
os: [ubuntu-latest]
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: ${{ matrix.python }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr_validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ please open a github issue on this repository.

## Installation

We recommend using anaconda and pip. You can install anaconda by downloading and executing appropriate installers from the [Anaconda website](https://www.anaconda.com/products/distribution), pip often comes included with python otherwise check [the following instructions](https://pip.pypa.io/en/stable/installation/). We support all Python version starting from **3.7**.
We recommend using anaconda and pip. You can install anaconda by downloading and executing appropriate installers from the [Anaconda website](https://www.anaconda.com/products/distribution), pip often comes included with python otherwise check [the following instructions](https://pip.pypa.io/en/stable/installation/). We support all Python version starting from **3.8**.

You may need `make` for simplification. The following command will install all packages used by all datasets within FLamby. If you already know you will only need a fraction of the datasets inside the suite you can do a partial installation and update it along the way using the options described below.
Create and launch the environment using:
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Installation
------------

We recommend using anaconda and pip. You can install anaconda by downloading and executing appropriate installers from the `Anaconda website <https://www.anaconda.com/products/distribution>`_\ , pip often comes included with python otherwise check `the following instructions <https://pip.pypa.io/en/stable/installation/>`_. We support all Python version starting from **3.7**.
We recommend using anaconda and pip. You can install anaconda by downloading and executing appropriate installers from the `Anaconda website <https://www.anaconda.com/products/distribution>`_\ , pip often comes included with python otherwise check `the following instructions <https://pip.pypa.io/en/stable/installation/>`_. We support all Python version starting from **3.8**.

You may need ``make`` for simplification. The following command will install all packages used by all datasets within FLamby. If you already know you will only need a fraction of the datasets inside the suite you can do a partial installation and update it along the way using the options described below.
Create and launch the environment using:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def run(self):
setup(
name="flamby",
version="0.0.1",
python_requires=">=3.7.0",
python_requires=">=3.8.0",
license="MIT",
classifiers=[
"Topic :: Scientific/Engineering :: Artificial Intelligence",
Expand Down

0 comments on commit 34f8ed5

Please sign in to comment.