Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump versioneer version to work with python 3.11 #16

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: CI

on:
push:
pull_request:

jobs:
test-install:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [2.7, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, "3.10", 3.11-dev, pypy-2.7, pypy-3.6, pypy-3.7, pypy-3.8]

runs-on: ${{ matrix.os }}

steps:
- name: Checkout repo
uses: actions/[email protected]

- name: Setup python
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}

- name: Test Installation
run: |
python setup.py build
python setup.py test
python setup.py test_kat
python setup.py speed
31 changes: 28 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
/build/
/MANIFEST
/dist/
# Python cached sources
__pycache__/
*.pyc

# Virtual environments
.venv*/
venv*/

# PyCharm/IntelliJ-generated files
*.iml
.idea/

# Visual Studio Code-generated files
.settings/
.project
.vscode/
.vs/

# Setuptools/twine-generated files, compiled sources.
build/
dist/
*.egg-info/
pip-wheel-metadata/
*.so
*.o
*.pyd

MANIFEST
17 changes: 0 additions & 17 deletions .travis.yml

This file was deleted.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ and RSA-3072.

This library includes a copy of all the C code necessary. You will need
Python 2.7 or Python 3.x (3.4 or later) and a C compiler. The tests are run
automatically against python 2.7, 3.4, 3.5, 3.6, 3.7, and pypy versions of
Python 2.7 and 3.6.
automatically against python 2.7 and 3.4 onwards as well as pypy versions
of Python 2.7 and 3.6 onwards.


## Speed and Key Sizes
Expand Down
Loading