Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .config/ci/test.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Usage:
# ./test.ps1 <python version>
# Examples:
# ./test.sh 3.13
# ./test.sh 3.14

if ($args.Count -eq 0) {
Write-Host "Usage: .\test.ps1 <pythonversion>"
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,20 @@ jobs:
commit:
name: Check the validity of the commits
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
# We follow the same contributing patterns as Wireshark. Thanks to
# https://gitlab.com/wireshark/wireshark/-/blob/master/.gitlab-ci.yml
steps:
- name: Get the number of commits in the PR
run: echo "PR_FETCH_DEPTH=$(( ${{ github.event.pull_request.commits }} + 1 ))" >> "${GITHUB_ENV}"
if: github.event_name == 'pull_request'
- name: Checkout Scapy
uses: actions/checkout@v6
with:
fetch-depth: ${{ env.PR_FETCH_DEPTH }}
if: github.event_name == 'pull_request'
- name: AI trailer reminder
run: bash ./.config/ci/check_commits.sh
if: github.event_name == 'pull_request'
spdx:
name: Check SPDX identifiers (Licensing)
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion doc/scapy/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Scapy versions
+------------------+-------+-------+--------+
| Python 3.4-3.6 | ❌ | ✅ | ❌ |
+------------------+-------+-------+--------+
| Python 3.7-3.11 | ❌ | ✅ | ✅ |
| Python 3.7-3.14 | ❌ | ✅ | ✅ |
+------------------+-------+-------+--------+

Installing Scapy v2.x
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Security",
"Topic :: System :: Networking",
"Topic :: System :: Networking :: Monitoring",
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@

# Tox environments:
# py{version}-{os}-{non_root,root}
# In our testing, version can be 37 to 313 or py39 for pypy39
# In our testing, version can be 37 to 314 or py311 for pypy311

[tox]
# minversion = 4.0
skip_missing_interpreters = true
# envlist = default when doing 'tox'
envlist = py{37,38,39,310,311,312,313}-{linux,bsd,windows}-{non_root,root}
envlist = py{37,38,39,310,311,312,313,314}-{linux,bsd,windows}-{non_root,root}

# Main tests

Expand Down
Loading