Skip to content

Commit

Permalink
get rid of 3.5 support and future-fstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
flying-sheep committed Sep 12, 2019
1 parent 1042779 commit 15fee6d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
1 change: 0 additions & 1 deletion get_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: future_fstrings -*-
"""
A version helper in the spirit of versioneer.
Minimalistic and able to run without build step using pkg_resources.
Expand Down
9 changes: 3 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ['flit>=1.3', 'future-fstrings']
requires = ['flit>=1.3']
build-backend = 'flit.buildapi'

[tool.flit.metadata]
Expand All @@ -13,11 +13,8 @@ classifiers = [
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
]
requires-python = '>=3.5'
requires = [
'setuptools',
'future-fstrings',
]
requires-python = '>=3.6'
requires = ['setuptools']
description-file = 'README.rst'

[tool.flit.metadata.requires-extra]
Expand Down

0 comments on commit 15fee6d

Please sign in to comment.