Skip to content

Commit 8a4b927

Browse files
committed
chore: Rename a few things.
1 parent e465374 commit 8a4b927

File tree

166 files changed

+66
-81
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

166 files changed

+66
-81
lines changed

.github/workflows/qa.yml

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,33 +2,19 @@ name: QA
22

33
on: pull_request
44

5-
permissions:
6-
contents: read
7-
packages: read
8-
95
jobs:
106
qa:
117
name: QA
12-
runs-on: ${{ matrix.os }}
8+
runs-on: ubuntu-latest
139
timeout-minutes: 15
14-
strategy:
15-
matrix:
16-
os: [ubuntu-latest]
17-
python-version: ["3.10"]
1810

1911
steps:
2012
- name: Clone repository
2113
uses: actions/checkout@v3
22-
- name: Login to GitHub container registry
23-
uses: docker/login-action@v2
24-
with:
25-
registry: ghcr.io
26-
username: ${{ github.actor }}
27-
password: ${{ secrets.GITHUB_TOKEN }}
28-
- name: Use Python ${{ matrix.python-version }}
14+
- name: Use Python
2915
uses: actions/setup-python@v4
3016
with:
31-
python-version: ${{ matrix.python-version }}
17+
python-version: '3.13'
3218
- name: Install dependencies
3319
run: |
3420
pip install poetry

.github/workflows/release.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,10 @@ jobs:
2121
with:
2222
fetch-depth: '0'
2323
token: ${{ secrets.TOKEN_GITHUB_TO_GITHUB_REPOSITORIES_RW }}
24-
- name: Login to GitHub container registry
25-
uses: docker/login-action@v2
26-
with:
27-
registry: ghcr.io
28-
username: ${{ github.actor }}
29-
password: ${{ secrets.GITHUB_TOKEN }}
3024
- name: Use Python
3125
uses: actions/setup-python@v4
3226
with:
33-
python-version: "3.10"
27+
python-version: '3.13'
3428
- name: Install dependencies
3529
run: |
3630
pip install poetry

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1+
# Python folders
2+
# __pycache__/
3+
14
# OS generated files and folders
25
.DS_Store

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
qa: analyze test
22

33
analyze:
4-
@poetry run pylint eventsourcingdb_client_python tests
4+
@poetry run pylint eventsourcingdb tests
55

66
test:
77
@poetry run pytest --maxfail=1

README.md

Lines changed: 2 additions & 2 deletions
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)