From 4564b1466ae1b40910e85b439bf07ec3bb28aa1a Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Fri, 30 Apr 2021 20:25:18 -0400 Subject: [PATCH] Rely on native f-strings. --- CHANGES.rst | 5 +++++ jaraco/mongodb/fixtures.py | 2 -- jaraco/mongodb/migration.py | 2 -- jaraco/mongodb/service.py | 2 -- jaraco/mongodb/sessions.py | 2 -- jaraco/mongodb/sharding.py | 2 -- jaraco/mongodb/tests/test_oplog.py | 2 -- setup.cfg | 1 - 8 files changed, 5 insertions(+), 13 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index be1c3db..cf0a03f 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,8 @@ +v11.2.0 +======= + +Rely on native f-strings and remove dependency on future-fstrings. + v11.1.0 ======= diff --git a/jaraco/mongodb/fixtures.py b/jaraco/mongodb/fixtures.py index 60a2e79..06d3170 100644 --- a/jaraco/mongodb/fixtures.py +++ b/jaraco/mongodb/fixtures.py @@ -1,5 +1,3 @@ -# coding: future-fstrings - import shlex import os diff --git a/jaraco/mongodb/migration.py b/jaraco/mongodb/migration.py index faaa542..14da850 100644 --- a/jaraco/mongodb/migration.py +++ b/jaraco/mongodb/migration.py @@ -1,5 +1,3 @@ -# coding: future-fstrings - ''' Migration support as features in MongoWorld 2016 From the Polls to the Trolls. diff --git a/jaraco/mongodb/service.py b/jaraco/mongodb/service.py index b15e8f5..556a3e0 100644 --- a/jaraco/mongodb/service.py +++ b/jaraco/mongodb/service.py @@ -1,5 +1,3 @@ -# coding: future-fstrings - import os import sys import tempfile diff --git a/jaraco/mongodb/sessions.py b/jaraco/mongodb/sessions.py index da79996..e5045b8 100644 --- a/jaraco/mongodb/sessions.py +++ b/jaraco/mongodb/sessions.py @@ -1,5 +1,3 @@ -# coding: future-fstrings - """ A MongoDB-backed CherryPy session store. diff --git a/jaraco/mongodb/sharding.py b/jaraco/mongodb/sharding.py index c5d829c..258d81e 100644 --- a/jaraco/mongodb/sharding.py +++ b/jaraco/mongodb/sharding.py @@ -1,5 +1,3 @@ -# coding: future_fstrings - import socket import operator diff --git a/jaraco/mongodb/tests/test_oplog.py b/jaraco/mongodb/tests/test_oplog.py index 9ecc8c5..6285ecc 100644 --- a/jaraco/mongodb/tests/test_oplog.py +++ b/jaraco/mongodb/tests/test_oplog.py @@ -1,5 +1,3 @@ -# coding: future-fstrings - import functools import bson diff --git a/setup.cfg b/setup.cfg index 4b0db3f..86ceb6b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -34,7 +34,6 @@ install_requires = tempora pytimeparse jaraco.collections>=2 - future-fstrings setup_requires = setuptools_scm[toml] >= 3.4.1 [options.packages.find]