This repository was archived by the owner on Apr 5, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
2
current_version = 0.1.0-alpha.2
3
- commit = False
3
+ commit = True
4
4
tag = False
5
5
6
6
7
7
parse =
8
8
(?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
10
10
11
11
serialize =
12
12
{major}.{minor}.{patch}-{pre}.{prenum}
Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ def get_long_description(here):
52
52
long_description_content_type = 'text/markdown' ,
53
53
packages = find_packages ('src' ),
54
54
package_dir = {'' : 'src' },
55
+ python_requires = '>=3.6' ,
55
56
install_requires = INSTALL_REQUIRES ,
56
57
extras_require = EXTRAS_REQUIRE ,
57
58
classifiers = CLASSIFIERS
Original file line number Diff line number Diff line change @@ -3,13 +3,11 @@ envlist =
3
3
py38
4
4
py37
5
5
py36
6
- py35
7
- py34
8
- py3
9
-
6
+ ; py36 and above only due to f-string formmatting.
7
+
10
8
[testenv]
11
9
changedir = tests
12
10
deps =
13
11
pytest-vcr
14
12
pytest-xdist
15
- commands = python -m pytest -n auto
13
+ commands = python -m pytest -n auto
You can’t perform that action at this time.
0 commit comments