Skip to content

Commit 9dcd4dd

Browse files
committed
update 3.9, some version cleanup
1 parent 3154261 commit 9dcd4dd

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
lines changed

.python-version

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1+
3.9.0
12
3.8.6
23
3.7.9
34
3.6.12
4-
3.9-dev
5+
3.10-dev

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,6 @@ matrix:
5454
python: "3.5"
5555
- env: DJANGO=3.1.4 CRYPTOGRAPHY=3.2.1
5656
python: "3.5"
57-
- env: DJANGO=3.0.11 CRYPTOGRAPHY=2.7
58-
python: "3.5"
5957
- env: DJANGO=3.0.11 CRYPTOGRAPHY=2.8
6058
python: "3.5"
6159
- env: DJANGO=3.0.11 CRYPTOGRAPHY=2.9.2

ca/ca/test_settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@
237237
CA_ENABLE_ACME = True
238238

239239
CRYPTOGRAPHY_VERSION = packaging.version.parse(cryptography.__version__).release[:2]
240-
NEWEST_PYTHON = sys.version_info[0:2] == (3, 8)
240+
NEWEST_PYTHON = sys.version_info[0:2] == (3, 9)
241241
NEWEST_CRYPTOGRAPHY = CRYPTOGRAPHY_VERSION == (3, 1)
242242
NEWEST_DJANGO = django.VERSION[:2] == (3, 1)
243243
NEWEST_VERSIONS = NEWEST_PYTHON and NEWEST_CRYPTOGRAPHY and NEWEST_DJANGO

docs/source/changelog.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ ChangeLog
1313
* New :ref:`CA_DEFAULT_CA <settings-ca-default-ca>` setting to consistently configure the CA used by default.
1414
* Correctly handle IDNA domain names in URLs and certificates.
1515
* Preliminary :doc:`acme`.
16+
* Add support for Python 3.9.
1617

1718
Backwards incompatible changes
1819
==============================

tox.ini

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,11 @@ deps =
99
django2.2: Django==2.2.17
1010
django3.0: Django==3.0.11
1111
django3.1: Django==3.1.4
12-
cryptography2.7: cryptography==2.7
1312
cryptography2.8: cryptography==2.8
1413
cryptography2.9.2: cryptography==2.9.2
1514
cryptography3.0: cryptography==3.0
1615
cryptography3.1: cryptography==3.1
17-
cryptography3.1: cryptography==3.2.1
18-
idna2.8: idna==2.8
16+
cryptography3.2: cryptography==3.2.1
1917
idna2.9: idna==2.9
2018
idna2.10: idna==2.10
2119
whitelist_externals = rm

0 commit comments

Comments
 (0)