Skip to content

Commit

Permalink
Merge branch 'topic/bbannier/py313'
Browse files Browse the repository at this point in the history
  • Loading branch information
bbannier committed Dec 5, 2024
2 parents ff32a14 + dbec63e commit 40d229d
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 10 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: pre-commit/[email protected]

test:
Expand All @@ -22,12 +22,17 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -42,7 +47,7 @@ jobs:
needs: [test]
if: github.repository == 'zeek/zeek-client' && github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check release version
# This fails e.g. if VERSION contains a dev commits suffix,
# since we don't want to push these to PyPI.
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.5.1
rev: v0.8.1
hooks:
- id: ruff
args: [--fix]
- id: ruff-format

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
Expand Down
8 changes: 8 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
1.3.1-44 | 2024-12-05 13:22:44 +0100

* Bump pre-commit hooks (Benjamin Bannier, Corelight)

* Bump used GH actions (Benjamin Bannier, Corelight)

* Add python-3.12 and python-3.13 to CI (Benjamin Bannier, Corelight)

1.3.1-40 | 2024-12-03 15:10:02 -0700

* Force the manpage columns to a large value to override outside environments (Tim Wojtulewicz, Corelight)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.1-40
1.3.1-44
2 changes: 1 addition & 1 deletion zeekclient/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
)
from .logs import LOG

__version__ = "1.3.1-40"
__version__ = "1.3.1-44"
__all__ = [
"brokertypes",
"cli",
Expand Down

0 comments on commit 40d229d

Please sign in to comment.