Skip to content

Commit b110eea

Browse files
authored
✨ Python 3.12
#310
1 parent 6f907cc commit b110eea

27 files changed

+1836
-1755
lines changed

.github/dependabot.yaml

-8
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,18 @@ updates:
44
directory: /
55
schedule:
66
interval: monthly
7-
labels:
8-
- dependencies
97
- package-ecosystem: pip
108
directory: /.github/workflows
119
schedule:
1210
interval: monthly
13-
labels:
14-
- dependencies
1511
- package-ecosystem: pip
1612
directory: /docs
1713
schedule:
1814
interval: monthly
19-
labels:
20-
- dependencies
2115
- package-ecosystem: pip
2216
directory: /
2317
schedule:
2418
interval: monthly
2519
versioning-strategy: lockfile-only
2620
allow:
2721
- dependency-type: all
28-
labels:
29-
- dependencies

.github/workflows/docker.yaml

+8-9
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,21 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Set up Github Workspace
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020
with:
2121
fetch-depth: 0
2222
- name: Set up QEMU
23-
uses: docker/setup-qemu-action@v2
23+
uses: docker/setup-qemu-action@v3
2424
- name: Set up Docker Buildx
25-
uses: docker/setup-buildx-action@v2
25+
uses: docker/setup-buildx-action@v3
2626
- name: Set up Python
27-
uses: actions/setup-python@v4
27+
uses: actions/setup-python@v5
2828
with:
29-
python-version: "3.9"
29+
python-version: "3.11"
3030
- name: Install Hatch
3131
run: |
32-
python -m pip install --upgrade pip
33-
python -m pip install -q hatch
34-
hatch env create
32+
python -m pip install -q --upgrade pip wheel
33+
python -m pip install -q hatch pre-commit
3534
hatch --version
3635
- name: Declare Version Variable
3736
run: |
@@ -41,7 +40,7 @@ jobs:
4140
echo PACKAGE_NAME=${PACKAGE_NAME} >> $GITHUB_ENV
4241
- name: Docker Image Building and Publishing
4342
id: docker_build
44-
uses: docker/build-push-action@v3
43+
uses: docker/build-push-action@v5
4544
with:
4645
push: false
4746
tags: juftin/${{ env.PACKAGE_NAME }}:latest

.github/workflows/lint.yaml

+10-11
Original file line numberDiff line numberDiff line change
@@ -11,32 +11,31 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Set up Github Workspace
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 0
17-
- name: Set up Python Environment 3.10
18-
uses: actions/setup-python@v4
17+
- name: Set up Python Environment
18+
uses: actions/setup-python@v5
1919
with:
20-
python-version: "3.9"
20+
python-version: "3.11"
2121
- name: Install Hatch
2222
run: |
23-
python -m pip install --upgrade pip
24-
python -m pip install -q hatch
25-
hatch env create
23+
python -m pip install --upgrade pip wheel
24+
python -m pip install -q hatch pre-commit
2625
hatch --version
2726
- name: Lint
2827
id: lint
2928
continue-on-error: true
3029
run: |
31-
echo "::add-matcher::.github/matchers/flake8.json"
32-
hatch run lint
30+
echo "::add-matcher::.github/workflows/matchers/flake8.json"
31+
hatch run lint:style
3332
echo "::remove-matcher owner=flake8::"
3433
- name: Code Checker
3534
id: check
3635
continue-on-error: true
3736
run: |
38-
echo "::add-matcher::.github/matchers/mypy.json"
39-
hatch run check
37+
echo "::add-matcher::.github/workflows/matchers/mypy.json"
38+
hatch run lint:typing
4039
echo "::remove-matcher owner=mypy::"
4140
- name: Raise Errors For Linting Failures
4241
if: |
File renamed without changes.
File renamed without changes.
File renamed without changes.

.github/workflows/publish.yaml

+13-15
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,23 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Check out the repository
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717
with:
1818
fetch-depth: 2
1919
- name: Set up Python
20-
uses: actions/setup-python@v4
20+
uses: actions/setup-python@v5
2121
with:
22-
python-version: "3.9"
22+
python-version: "3.11"
2323
- name: Install Hatch
2424
run: |
2525
python -m pip install --upgrade pip
26-
python -m pip install -q hatch
27-
hatch env create
26+
python -m pip install -q hatch pre-commit
2827
hatch --version
2928
- name: Build package
3029
run: |
3130
hatch build
3231
- name: Publish package on PyPI
33-
uses: pypa/gh-action-pypi-publish@v1.8.6
32+
uses: pypa/gh-action-pypi-publish@v1.8.11
3433
with:
3534
user: __token__
3635
password: ${{ secrets.PYPI_TOKEN }}
@@ -41,23 +40,22 @@ jobs:
4140
runs-on: ubuntu-latest
4241
steps:
4342
- name: Check out the repository
44-
uses: actions/checkout@v3
43+
uses: actions/checkout@v4
4544
with:
4645
fetch-depth: 2
4746
- name: Set up Python
48-
uses: actions/setup-python@v4
47+
uses: actions/setup-python@v5
4948
with:
50-
python-version: "3.9"
49+
python-version: "3.11"
5150
- name: Install Hatch
5251
run: |
53-
python -m pip install --upgrade pip
54-
python -m pip install -q hatch
55-
hatch env create
52+
python -m pip install -q --upgrade pip wheel
53+
python -m pip install -q hatch pre-commit
5654
hatch --version
5755
- name: Set up QEMU
58-
uses: docker/setup-qemu-action@v1
56+
uses: docker/setup-qemu-action@v3
5957
- name: Set up Docker Buildx
60-
uses: docker/setup-buildx-action@v1
58+
uses: docker/setup-buildx-action@v3
6159
- name: Login to DockerHub
6260
uses: docker/login-action@v2
6361
with:
@@ -71,7 +69,7 @@ jobs:
7169
echo PACKAGE_NAME=${PACKAGE_NAME} >> $GITHUB_ENV
7270
- name: Docker Image Building and Publishing
7371
id: docker_build
74-
uses: docker/build-push-action@v2
72+
uses: docker/build-push-action@v5
7573
with:
7674
push: true
7775
tags: juftin/${{ env.PACKAGE_NAME }}:latest,juftin/${{ env.PACKAGE_NAME }}:${{ env.PACKAGE_VERSION }}

.github/workflows/release.yaml

+22-15
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,30 @@ jobs:
99
name: Release
1010
if: github.repository_owner == 'juftin'
1111
runs-on: ubuntu-latest
12+
permissions:
13+
contents: write
14+
issues: write
15+
pull-requests: write
1216
steps:
13-
- name: Checkout
14-
uses: actions/checkout@v3
17+
- name: Check out the repository
18+
uses: actions/checkout@v4
19+
with:
20+
fetch-depth: 2
21+
ref: main
1522
- name: Setup Node.js
16-
uses: actions/setup-node@v3
23+
uses: actions/setup-node@v4
1724
- name: Set up Python
18-
uses: actions/setup-python@v4
25+
uses: actions/setup-python@v5
1926
with:
20-
python-version: "3.9"
27+
python-version: "3.11"
2128
- name: Install Hatch
2229
run: |
2330
python -m pip install --upgrade pip
24-
python -m pip install -q hatch
25-
hatch env create
31+
python -m pip install -q hatch pre-commit
32+
hatch -v env create
2633
hatch --version
2734
- name: Release
28-
run: hatch run semantic-release
35+
run: hatch run gen:release
2936
env:
3037
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
3138
GIT_AUTHOR_NAME: github-actions[bot]
@@ -41,23 +48,23 @@ jobs:
4148
contents: write
4249
steps:
4350
- name: Checkout Latest Changes
44-
uses: actions/checkout@v3
51+
uses: actions/checkout@v4
4552
with:
4653
ref: ${{ github.ref }}
4754
fetch-depth: 0
4855
- name: Set up Python Environment
49-
uses: actions/setup-python@v4
56+
uses: actions/setup-python@v5
5057
with:
51-
python-version: "3.9"
58+
python-version: "3.11"
5259
- name: Install Hatch
5360
run: |
54-
python -m pip install --upgrade pip
55-
python -m pip install -q hatch
56-
hatch env create
61+
python -m pip install --upgrade pip wheel
62+
python -m pip install -q hatch pre-commit
63+
hatch env create docs
5764
hatch --version
5865
- name: Set Up GitHub Actions User
5966
run: |
6067
git config user.name "github-actions[bot]"
6168
git config user.email "github-actions[bot]@users.noreply.github.com"
6269
- name: Deploy Documentation Changes
63-
run: hatch run docs-deploy --force
70+
run: hatch run docs:gh-deploy --force

.github/workflows/tests.yaml

+7-6
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
fail-fast: true
2828
matrix:
2929
include:
30+
- { name: Python 3.12, python: "3.12" }
3031
- { name: Python 3.11, python: "3.11" }
3132
- { name: Python 3.10, python: "3.10" }
3233
- { name: Python 3.9, python: "3.9" }
@@ -35,20 +36,20 @@ jobs:
3536
CAMPLY_LOG_HANDLER: PYTHON
3637
steps:
3738
- name: Set up Github Workspace
38-
uses: actions/checkout@v3
39+
uses: actions/checkout@v4
3940
with:
4041
fetch-depth: 0
4142
- name: Set up Python Environment ${{ matrix.python }}
42-
uses: actions/setup-python@v4
43+
uses: actions/setup-python@v5
4344
with:
4445
python-version: ${{ matrix.python }}
4546
- name: Install Hatch
4647
run: |
47-
python -m pip install --upgrade pip
48-
python -m pip install -q hatch
48+
python -m pip install -q --upgrade pip wheel
49+
python -m pip install -q hatch pre-commit
4950
hatch --version
5051
- name: Test Suite
5152
run: |
52-
echo "::add-matcher::.github/matchers/python.json"
53-
hatch run +py="${{ matrix.python }}" test:matrix
53+
echo "::add-matcher::.github/workflows/matchers/python.json"
54+
hatch run +py=${{ matrix.python }} all:cov
5455
echo "::remove-matcher owner=python::"

.pre-commit-config.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ repos:
1212
- id: trailing-whitespace
1313
- id: end-of-file-fixer
1414
- id: check-yaml
15+
exclude: mkdocs.yml
1516
- id: check-ast
1617
- id: check-docstring-first
1718
- id: check-merge-conflict
@@ -42,13 +43,13 @@ repos:
4243
- id: format
4344
name: format
4445
description: Runs Code Auto-Formatters
45-
entry: hatch run format
46+
entry: hatch run lint:fmt
4647
language: system
4748
pass_filenames: false
4849
- id: lint
4950
name: lint
5051
description: Runs Code Linters
51-
entry: hatch run format
52+
entry: hatch run lint:style
5253
language: system
5354
pass_filenames: false
5455
require_serial: false

.releaserc.js

-61
This file was deleted.

0 commit comments

Comments
 (0)