10000 Set Python version requirement >= 3.6 · coffeepenbit/bookstack@3613599 · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Apr 5, 2025. It is now read-only.

Commit 3613599

Browse files
committed
Set Python version requirement >= 3.6
1 parent a1769f3 commit 3613599

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.bumpversion.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[bumpversion]
22
current_version = 0.1.0-alpha.2
3-
commit = False
3+
commit = True
44
tag = False
55

66

77
parse =
88
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+) # major, minor and patch
9-
(?:\-(?P<pre>(?:alpha|beta|rc))\.(?P<prenum>\d+))? # pre-release
9+
(?:\-(?P<pre>(?:alpha|beta|rc))(\.(?P<prenum>\d+))?)? # pre-release
1010

1111
serialize =
1212
{major}.{minor}.{patch}-{pre}.{prenum}

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ def get_long_description(here):
5252
long_description_content_type='text/markdown',
5353
packages=find_packages('src'),
5454
package_dir={'': 'src'},
55+
python_requires='>=3.6',
5556
install_requires=INSTALL_REQUIRES,
5657
extras_require=EXTRAS_REQUIRE,
5758
classifiers=CLASSIFIERS

tox.ini

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@ envlist =
33
py38
44
py37
55
py36
6-
py35
7-
py34
8-
py3
9-
6+
; py36 and above only due to f-string formmatting.
7+
108
[testenv]
119
changedir = tests
1210
deps =
1311
pytest-vcr
1412
pytest-xdist
15-
commands = python -m pytest -n auto
13+
commands = python -m pytest -n auto

0 commit comments

Comments
 (0)
0