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 11[bumpversion]
22current_version = 0.1.0-alpha.2
3- commit = False
3+ commit = True
44tag = False
55
66
77parse =
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
1111serialize =
1212 {major}.{minor}.{patch}-{pre}.{prenum}
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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]
119changedir = tests
1210deps =
1311 pytest-vcr
1412 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