Skip to content

Commit

Permalink
v0.5.0 — Modernization
Browse files Browse the repository at this point in the history
- Migrated from setuptools to hatch
- Drop support for Python 3.7
- Don't cause an internal error on marker misuse with pluggy 1.4+
- Drop support for pytest 6
- Require pluggy 1.1+
- Add type-checking
  • Loading branch information
jwodder committed Feb 11, 2024
1 parent 4452f68 commit 0c9584b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
v0.5.0 (in development)
-----------------------
v0.5.0 (2024-02-11)
-------------------
- Migrated from setuptools to hatch
- Drop support for Python 3.7
- Don't cause an internal error on marker misuse with pluggy 1.4+
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2021-2023 John Thorvald Wodder II
Copyright (c) 2021-2024 John Thorvald Wodder II

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/pytest_fail_slow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from typing import Generator, Union
import pytest

__version__ = "0.5.0.dev1"
__version__ = "0.5.0"
__author__ = "John Thorvald Wodder II"
__author_email__ = "pytest-fail-slow@varonathe.org"
__license__ = "MIT"
Expand Down

0 comments on commit 0c9584b

Please sign in to comment.