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
3 changes: 1 addition & 2 deletions .devcontainer/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ RUN pip3 install \
pytest \
pytest-cov \
python-coveralls \
rstcheck \
snooty-lextudio
rstcheck

WORKDIR /workspaces

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.7
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.9
- name: Install pypa/build
run: >-
python -m
Expand Down
15 changes: 11 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
matrix:
include:
- python-version: "3.7"
os: ubuntu-latest
os: ubuntu-20.04
- python-version: "3.8"
os: ubuntu-latest
os: ubuntu-20.04
- python-version: "3.9"
os: ubuntu-latest
- python-version: "3.10"
Expand All @@ -22,6 +22,8 @@ jobs:
os: ubuntu-latest
- python-version: "3.12"
os: ubuntu-latest
- python-version: "3.13"
os: ubuntu-latest
- python-version: "pypy3.9"
os: windows-latest

Expand All @@ -33,8 +35,13 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: pip install pytest pytest-cov python-coveralls coverage flake8 pydocstyle setuptools
- name: Install dependencies (Windows)
if: runner.os == 'Windows'
run: pip install pytest pytest-cov python-coveralls coverage flake8 pydocstyle setuptools cryptography<44

- name: Install dependencies (Ubuntu)
if: runner.os == 'Linux'
run: pip install pytest pytest-cov python-coveralls coverage flake8 pydocstyle setuptools cryptography

- name: Lint with flake8
run: |
Expand Down
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
{
"label": "Run tests",
"type": "shell",
"command": "pytest --cov=pyfritzhome",
"command": "pytest --cov=pyfritzhome --cov-report term-missing",
"group": {
"kind": "test",
"isDefault": true
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ classifiers =
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy

Expand Down
Loading