Skip to content

Commit f4593f8

Browse files
authored
Merge pull request #1215 from Kriechi/bump-dev
Bump dev to 4.0.0dev0
2 parents 570dc7d + 3da7c99 commit f4593f8

17 files changed

+53
-183
lines changed

.travis.yml

Lines changed: 13 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -13,39 +13,31 @@ cache:
1313
matrix:
1414
include:
1515
# Main tests on supported Python versions.
16-
- python: "2.7"
17-
dist: trusty
18-
env: TOXENV=py27
19-
- python: "3.4"
20-
dist: trusty
21-
env: TOXENV=py34
22-
- python: "3.5"
23-
dist: trusty
24-
env: TOXENV=py35
2516
- python: "3.6"
26-
dist: trusty
17+
dist: bionic
2718
env: TOXENV=py36
2819
- python: "3.7"
29-
dist: xenial
20+
dist: bionic
3021
env: TOXENV=py37
3122
- python: "3.8"
32-
dist: xenial
23+
dist: bionic
3324
env: TOXENV=py38
34-
- python: "pypy-5.3.1"
35-
dist: trusty
25+
- python: "pypy3.6-7.2.0"
26+
dist: bionic
3627
env: TOXENV=pypy
3728

3829
# Linting, docs, and other non-test stuff.
39-
- python: "3.7"
40-
dist: xenial
30+
- python: "3.8"
31+
dist: bionic
4132
env: TOXENV=lint
42-
- python: "3.7"
43-
dist: xenial
33+
- python: "3.8"
34+
dist: bionic
4435
env: TOXENV=docs
45-
- python: "3.7"
46-
dist: xenial
36+
- python: "3.8"
37+
dist: bionic
4738
env: TOXENV=packaging
48-
- python: "3.6"
39+
- python: "3.8"
40+
dist: bionic
4941
env: TOXENV=h2spec
5042

5143
install:

CONTRIBUTORS.rst

Lines changed: 0 additions & 115 deletions
This file was deleted.

HISTORY.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
Release History
22
===============
33

4+
4.0.0.dev0
5+
------------------
6+
7+
API Changes (Backward-Incompatible)
8+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9+
10+
- Support for Python 2.7 has been removed.
11+
- Support for Python 3.4 has been removed.
12+
- Support for Python 3.5 has been removed.
13+
- Support for PyPy (Python 2.7 compatible) has been removed.
14+
15+
416
3.2.0 (2020-02-08)
517
------------------
618

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015-2016 Cory Benfield and contributors
3+
Copyright (c) 2015-2020 Cory Benfield and contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

Makefile

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
.PHONY: publish test
1+
.PHONY: publish
22

33
publish:
44
rm -rf dist/
5-
python setup.py sdist bdist_wheel
5+
pip3 install -U twine wheel pip setuptools
6+
python3 setup.py sdist bdist_wheel
67
twine upload -s dist/*
7-
8-
test:
9-
py.test -n 4 --cov h2 test/

README.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,4 @@ License
6161
Authors
6262
=======
6363

64-
``hyper-h2`` is maintained by Cory Benfield, with contributions from others. For
65-
more details about the contributors, please see ``CONTRIBUTORS.rst``.
64+
``hyper-h2`` is maintained by Cory Benfield, with contributions from others.
-41.7 KB
Loading
-4.58 KB
Loading

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
# built documents.
5656
#
5757
# The short X.Y version.
58-
version = '3.2.0'
58+
version = '4.0.0'
5959
# The full version, including alpha/beta/rc tags.
60-
release = '3.2.0'
60+
release = '4.0.0dev0'
6161

6262
# The language for content autogenerated by Sphinx. Refer to documentation
6363
# for a list of supported languages.

docs/source/contributors.rst

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)