diff options
| author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2021-10-06 09:12:15 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-05 21:12:15 -0400 |
| commit | f3243541aa9ae8e6ea0f459ef80d7c46e18baa4d (patch) | |
| tree | be574622f15f70cf8c91389e9be14498ac75350e | |
| parent | 2a6f15c8b30410603b443e846477475a324a8dde (diff) | |
| download | cryptography-f3243541aa9ae8e6ea0f459ef80d7c46e18baa4d.tar.gz | |
py310 is out and in GHA (#6385)
* py310 is out and in GHA
* also switch windows/macos since we test min/max py3 there only
| -rw-r--r-- | .github/workflows/ci.yml | 6 | ||||
| -rw-r--r-- | setup.cfg | 3 |
2 files changed, 5 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8246e7b3e..47d8d984e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,7 +40,7 @@ jobs: - {VERSION: "3.9", TOXENV: "py39", OPENSSL: {TYPE: "libressl", VERSION: "3.2.7"}} - {VERSION: "3.9", TOXENV: "py39", OPENSSL: {TYPE: "libressl", VERSION: "3.3.5"}} - {VERSION: "3.9", TOXENV: "py39", OPENSSL: {TYPE: "libressl", VERSION: "3.4.0"}} - - {VERSION: "3.10-dev", TOXENV: "py310"} + - {VERSION: "3.10", TOXENV: "py310"} RUST: - stable name: "${{ matrix.PYTHON.TOXENV }} ${{ matrix.PYTHON.OPENSSL.TYPE }} ${{ matrix.PYTHON.OPENSSL.VERSION }} ${{ matrix.PYTHON.TOXARGS }} ${{ matrix.PYTHON.OPENSSL.CONFIG_FLAGS }}" @@ -295,7 +295,7 @@ jobs: matrix: PYTHON: - {VERSION: "3.6", TOXENV: "py36", EXTRA_CFLAGS: ""} - - {VERSION: "3.9", TOXENV: "py39", EXTRA_CFLAGS: "-DUSE_OSRANDOM_RNG_FOR_TESTING"} + - {VERSION: "3.10", TOXENV: "py310", EXTRA_CFLAGS: "-DUSE_OSRANDOM_RNG_FOR_TESTING"} RUST: - stable name: "${{ matrix.PYTHON.TOXENV }} on macOS" @@ -362,7 +362,7 @@ jobs: - {ARCH: 'x64', WINDOWS: 'win64', RUST_TRIPLE: 'x86_64-pc-windows-msvc'} PYTHON: - {VERSION: "3.6", TOXENV: "py36", MSVC_VERSION: "2019", CL_FLAGS: ""} - - {VERSION: "3.9", TOXENV: "py39", MSVC_VERSION: "2019", CL_FLAGS: "/D USE_OSRANDOM_RNG_FOR_TESTING"} + - {VERSION: "3.10", TOXENV: "py310", MSVC_VERSION: "2019", CL_FLAGS: "/D USE_OSRANDOM_RNG_FOR_TESTING"} RUST: - stable JOB_NUMBER: [0, 1, 2, 3] @@ -31,6 +31,7 @@ classifiers = Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 Programming Language :: Python :: Implementation :: CPython Programming Language :: Python :: Implementation :: PyPy Topic :: Security :: Cryptography @@ -85,4 +86,4 @@ pep8test = # This extra is for OpenSSH private keys that use bcrypt KDF # Versions: v3.1.3 - ignore_few_rounds, v3.1.5 - abi3 ssh = - bcrypt >= 3.1.5
\ No newline at end of file + bcrypt >= 3.1.5 |
