diff --git a/doc/source/ref-changelog.md b/doc/source/ref-changelog.md index ed95292a651..c7123f3c48a 100644 --- a/doc/source/ref-changelog.md +++ b/doc/source/ref-changelog.md @@ -18,13 +18,13 @@ - **General updates to the simulation engine** ([#2331](https://github.com/adap/flower/pull/2331)) -- **General improvements** ([#2309](https://github.com/adap/flower/pull/2309), [#2310](https://github.com/adap/flower/pull/2310), [2313](https://github.com/adap/flower/pull/2313), [#2316](https://github.com/adap/flower/pull/2316), [2317](https://github.com/adap/flower/pull/2317),[#2349](https://github.com/adap/flower/pull/2349)) +- **General improvements** ([#2309](https://github.com/adap/flower/pull/2309), [#2310](https://github.com/adap/flower/pull/2310), [2313](https://github.com/adap/flower/pull/2313), [#2316](https://github.com/adap/flower/pull/2316), [#2317](https://github.com/adap/flower/pull/2317),[#2349](https://github.com/adap/flower/pull/2349)) Flower received many improvements under the hood, too many to list here. ### Incompatible changes -- **Remove support for Python 3.7** ([#2280](https://github.com/adap/flower/pull/2280), [#2299](https://github.com/adap/flower/pull/2299), [2304](https://github.com/adap/flower/pull/2304), [#2306](https://github.com/adap/flower/pull/2306), [2355](https://github.com/adap/flower/pull/2355)) +- **Remove support for Python 3.7** ([#2280](https://github.com/adap/flower/pull/2280), [#2299](https://github.com/adap/flower/pull/2299), [#2304](https://github.com/adap/flower/pull/2304), [#2306](https://github.com/adap/flower/pull/2306), [#2355](https://github.com/adap/flower/pull/2355), [#2356](https://github.com/adap/flower/pull/2356)) Python 3.7 support was deprecated in Flower 1.5, and this release removes support. Flower now requires Python 3.8. diff --git a/src/py/flwr/common/telemetry.py b/src/py/flwr/common/telemetry.py index fb8d4189367..9755a974ce2 100644 --- a/src/py/flwr/common/telemetry.py +++ b/src/py/flwr/common/telemetry.py @@ -164,11 +164,6 @@ def _generate_next_value_(name: str, start: int, count: int, last_values: List[A } -# In Python 3.7 pylint will throw an error stating that -# "Value 'Future' is unsubscriptable". -# This pylint disable line can be remove when dropping support -# for Python 3.7 -# pylint: disable-next=unsubscriptable-object def event( event_type: EventType, event_details: Optional[Dict[str, Any]] = None,