Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 8bc819f

Browse filesBrowse files
authored
Merge pull request #296 from tomschr/feature/python-versions
Support latest Python version for semver2
2 parents 4090b94 + 61f835f commit 8bc819f
Copy full SHA for 8bc819f

File tree

4 files changed

+17
-7
lines changed
Filter options

4 files changed

+17
-7
lines changed

‎.travis.yml

Copy file name to clipboardExpand all lines: .travis.yml
+8Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,13 @@ matrix:
3232
dist: xenial
3333
env: TOXENV=py37
3434

35+
- python: "3.8"
36+
dist: xenial
37+
env: TOXENV=py38
38+
39+
- python: "3.9-dev"
40+
dist: bionic
41+
env: TOXENV=py39
42+
3543
- python: "pypy"
3644
env: TOXENV=pypy

‎README.rst

Copy file name to clipboardExpand all lines: README.rst
+5-5Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ A Python module for `semantic versioning`_. Simplifies comparing versions.
1212
.. warning::
1313

1414
As anything comes to an end, this project will focus on Python 3.x only.
15-
New features and bugfixes will be integrated into the 3.x.y branch only.
15+
New features and bugfixes will be integrated into semver3 only.
1616

1717
Major version 3 of semver will contain some incompatible changes:
1818

19-
* removes support for Python 2.7 and 3.3
19+
* removes support for Python 2.7, 3.3, 3.4, and 3.5.
2020
* removes deprecated functions.
2121

22-
The last version of semver which supports Python 2.7 and 3.4 will be
23-
2.10.x. However, keep in mind, version 2.10.x is frozen: no new
22+
The last version of semver which supports Python 2.7 and 3.5 will be
23+
2.x.y. However, keep in mind, this version is frozen: no new
2424
features nor backports will be integrated.
2525

26-
We recommend to upgrade your workflow to Python 3.x to gain support,
26+
We recommend to upgrade your workflow to Python >=3.6 to gain support,
2727
bugfixes, and new features.
2828

2929
The module follows the ``MAJOR.MINOR.PATCH`` style:

‎setup.py

Copy file name to clipboardExpand all lines: setup.py
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,8 @@ def read_file(filename):
9999
"Programming Language :: Python :: 3.5",
100100
"Programming Language :: Python :: 3.6",
101101
"Programming Language :: Python :: 3.7",
102+
"Programming Language :: Python :: 3.8",
103+
"Programming Language :: Python :: 3.9",
102104
"Topic :: Software Development :: Libraries :: Python Modules",
103105
],
104106
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",

‎tox.ini

Copy file name to clipboardExpand all lines: tox.ini
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[tox]
22
envlist =
33
flake8
4-
py{27,34,35,36,37}
4+
py{27,34,35,36,37,38,39}
55
pypy
66

77
[testenv]
8-
description = Run test suite
8+
description = Run test suite for {basepython}
99
whitelist_externals = make
1010
commands = pytest {posargs:}
1111
deps =

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.