Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
3cb47bb
:arrow_up: modernizing the test suite by migrating to pytest + nox
Ousret Dec 25, 2024
ac0c075
:wrench: update CI to use noxfile for testing session
Ousret Dec 29, 2024
326a661
:bug: Fix error on teardown for our stream transport adapter (asyncio…
Ousret Dec 29, 2024
68c8418
:art: reformat protocol.py
Ousret Dec 29, 2024
4395308
:art: initial clippy fixes
Ousret Dec 29, 2024
516317f
:art: reformat noxfile.py
Ousret Dec 29, 2024
ce4560d
:art: fix clippy remaining errors
Ousret Dec 29, 2024
d1c05a5
:sparkle: Migrate Kyber 768 Draft to standard Module-Lattice 768
Ousret Dec 29, 2024
2d2b0be
:arrow_up: Upgrade pre-commit config
Ousret Dec 29, 2024
6a3c5af
:art: reformat files
Ousret Dec 29, 2024
966453a
:bug: Fix X25519ML768 key exchange algorithm (minor changes in cipher…
Ousret Dec 30, 2024
4eecc4d
:pencil: initial changelog for v1.3.0
Ousret Dec 30, 2024
307c157
:sparkle: Add a way to serialize/deserialize OCSPResponse and Certifi…
Ousret Dec 30, 2024
77521e9
:art: Ensure proper exception instead of panics in rust code (+fix se…
Ousret Dec 31, 2024
cd89c42
:sparkle: initial migration from pyo3 0.20.3 to 0.23.3
Ousret Dec 31, 2024
ebe8b75
:art: reformat aead.rs
Ousret Dec 31, 2024
fda006b
🚨 fix deprecation warnings excepted ToPyObject
Ousret Dec 31, 2024
06aab5b
:pencil: update changelog for pyo3 upgrade
Ousret Dec 31, 2024
f59768f
🚨 fix into pyobject remaining deprecation warning
Ousret Jan 1, 2025
71043b3
:pencil: update changelog
Ousret Jan 1, 2025
1d847ed
:bug: fix docs generation
Ousret Jan 1, 2025
85cbd66
:bug: fix warnings in tests
Ousret Jan 1, 2025
0aa80b7
:art: reformat src/
Ousret Jan 1, 2025
589386f
:wrench: update CI (add integration, prep for 3.13t)
Ousret Jan 1, 2025
013db58
:wrench: update noxfile to ensure correct package imported
Ousret Jan 1, 2025
946571f
:wrench: update noxfile to ensure correct package imported *2
Ousret Jan 1, 2025
4fbcbe1
:art: reformat noxfile.py
Ousret Jan 1, 2025
c9c7908
:wrench: fix pypy test pipeline
Ousret Jan 1, 2025
5d882ef
:wrench: downgrade all remaining logs output to debug
Ousret Jan 1, 2025
0057611
:wrench: fix pypy nox session
Ousret Jan 1, 2025
4ba2a2b
:pencil: Add missing changelog entry about cp313t initial support
Ousret Jan 1, 2025
1ab655e
:wrench: fix CI.yml syntax error
Ousret Jan 1, 2025
5b49f00
:wrench: ensure PYO3_CROSS set for windows cross aarch64 build (worka…
Ousret Jan 1, 2025
a7f2f70
:bug: workaround patch failure when using cp37 (test_connect_and_serv…
Ousret Jan 1, 2025
080b2db
:sparkle: upload and verify coverage
Ousret Jan 1, 2025
6d3db02
:wrench: update metadata tool.maturin.features
Ousret Jan 1, 2025
c09f189
:wrench: coverage configuration review
Ousret Jan 1, 2025
e6b1a8c
:wrench: coverage configuration review*2
Ousret Jan 1, 2025
0e0c3ab
:wrench: downgrade warning logs to debug
Ousret Jan 1, 2025
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
12 changes: 0 additions & 12 deletions .appveyor.yml

This file was deleted.

25 changes: 25 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
[run]
source =
qh3
# Needed for Python 3.11 and lower
disable_warnings = no-sysmon

[paths]
source =
qh3
*/qh3
*\qh3

[report]
exclude_lines =
except ModuleNotFoundError:
except ImportError:
pass
import
raise NotImplementedError
.* # Platform-specific.*
.*:.* # Python \d.*
.* # Abstract
.* # Defensive:
if (?:typing.)?TYPE_CHECKING:
^\s*?\.\.\.\s*$
Loading