Skip to content

Commit a7794eb

Browse files
Release Pynguin 0.38.0
- Remove the dependency to our custom MutPy fork by integrating the relevant code into Pynguin directly
1 parent b5f3d3b commit a7794eb

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ for the source-code artifacts of each version.
1111

1212
## Unreleased
1313

14+
### Pynguin 0.38.0
15+
16+
- Remove the dependency to our custom [MutPy fork](https://github.com/se2p/MutPy-Pynguin)
17+
by integrating the relevant code into Pynguin directly (thanks to @BergLucas in #64)
18+
1419
### Pynguin 0.37.0
1520

1621
- Add possibility to control number of mutations in MOSA.

docker/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ FROM python:3.10.14-slim-bullseye AS execute
3636

3737
# Set environment variables
3838
# Set the Pynguin version
39-
ENV PYNGUIN_VERSION "0.39.0.dev0"
39+
ENV PYNGUIN_VERSION "0.38.0"
4040
# Pynguin requires to set the variable to show it that the user is aware that running
4141
# Pynguin executes third-party code, which could cause arbitrary harm to the system.
4242
# By setting the variable, the user acknowledges that they are aware of this. In the
@@ -58,8 +58,8 @@ COPY --from=build /pynguin-build/dist/pynguin-${PYNGUIN_VERSION}-py3-none-any.wh
5858
COPY --from=build /pynguin-build/pynguin-docker.sh .
5959

6060
RUN pip install /pynguin/pynguin-${PYNGUIN_VERSION}-py3-none-any.whl \
61-
typing-extensions==4.10.0 \
62-
mypy==1.9.0
61+
typing-extensions==4.12.2 \
62+
mypy==1.10.0
6363

6464
ENTRYPOINT ["/pynguin/pynguin-docker.sh"]
6565
CMD []

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[tool.poetry]
66
name = "pynguin"
7-
version = "0.36.0"
7+
version = "0.38.0"
88
description = "Pynguin is a tool for automated unit test generation for Python"
99
authors = ["Stephan Lukasczyk <stephan@pynguin.eu>"]
1010
license = "MIT"

src/pynguin/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
# SPDX-License-Identifier: MIT
66
#
77
"""Specifies the version of Pynguin."""
8-
__version__ = "0.38.0.dev"
8+
__version__ = "0.38.0"

0 commit comments

Comments
 (0)