• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

seumoose / example-python-package
100%

Build:
DEFAULT BRANCH: main
Repo Added 17 Apr 2024 01:39PM UTC
Files 5
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

LAST BUILD ON BRANCH main
branch: main
CHANGE BRANCH
x
Reset
  • main

29 Apr 2024 11:06PM UTC coverage: 100.0%. Remained the same
8886604003

push

github

web-flow
Bump mypy from 1.9.0 to 1.10.0 (#11)

Bumps [mypy](https://github.com/python/mypy) from 1.9.0 to 1.10.0.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/python/mypy/blob/master/CHANGELOG.md">mypy's
changelog</a>.</em></p>
<blockquote>
<h1>Mypy Release Notes</h1>
<h2>Next release</h2>
<h2>Mypy 1.10</h2>
<p>We’ve just uploaded mypy 1.10 to the Python Package Index (<a
href="https://pypi.org/project/mypy/">PyPI</a>). Mypy is a static type
checker for Python. This release includes new features, performance
improvements and bug fixes. You can install it as follows:</p>
<pre><code>python3 -m pip install -U mypy
</code></pre>
<p>You can read the full documentation for this release on <a
href="http://mypy.readthedocs.io">Read the Docs</a>.</p>
<h4>Support TypeIs (PEP 742)</h4>
<p>Mypy now supports <code>TypeIs</code> (<a
href="https://peps.python.org/pep-0742/">PEP 742</a>), which allows
functions to narrow the type of a value, similar to
<code>isinstance()</code>. Unlike <code>TypeGuard</code>,
<code>TypeIs</code> can narrow in both the <code>if</code> and
<code>else</code> branches of an if statement:</p>
<pre lang="python"><code>from typing_extensions import TypeIs
<p>def is_str(s: object) -&gt; TypeIs[str]:
return isinstance(s, str)</p>
<p>def f(o: str | int) -&gt; None:
if is_str(o):
# Type of o is 'str'
...
else:
# Type of o is 'int'
...
</code></pre></p>
<p><code>TypeIs</code> will be added to the <code>typing</code> module
in Python 3.13, but it
can be used on earlier Python versions by importing it from
<code>typing_extensions</code>.</p>
<p>This feature was contributed by Jelle Zijlstra (PR <a
href="https://redirect.github.com/python/mypy/pull/16898">16898</a>).</p>
<h4>Support TypeVar Defaults (PEP 696)</h4>
<p><a href="https://peps.python.org/pep-0696/">PEP 696</a> adds support
for type parameter defaults.
Example:</p>
<pre lang="python"><code>from typing import G... (continued)

80 of 80 relevant lines covered (100.0%)

1.0 hits per line

Relevant lines Covered
Build:
Build:
80 RELEVANT LINES 80 COVERED LINES
1.0 HITS PER LINE
Source Files on main
Detailed source file information is not available for this build.

Recent builds

Builds Branch Commit Type Ran Committer Via Coverage
8886604003 main Bump mypy from 1.9.0 to 1.10.0 (#11) Bumps [mypy](https://github.com/python/mypy) from 1.9.0 to 1.10.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/python/mypy/blob/master/CHANGELOG.md">mypy's chang... push 29 Apr 2024 11:07PM UTC web-flow github
100.0
8886116387 main Bump isort from 5.12.0 to 5.13.2 (#10) Bumps [isort](https://github.com/pycqa/isort) from 5.12.0 to 5.13.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pycqa/isort/releases">isort's releases</a>... push 29 Apr 2024 10:13PM UTC web-flow github
100.0
8886029604 main Bump pytest-xdist from 3.3.1 to 3.6.1 (#12) Bumps [pytest-xdist](https://github.com/pytest-dev/pytest-xdist) from 3.3.1 to 3.6.1. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pytest-dev/pytest-xdist/... push 29 Apr 2024 10:05PM UTC web-flow github
100.0
8885910668 main Bump pytest from 7.4.2 to 7.4.4 (#9) Bumps [pytest](https://github.com/pytest-dev/pytest) from 7.4.2 to 7.4.4. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pytest-dev/pytest/releases">pytest's r... push 29 Apr 2024 09:53PM UTC web-flow github
100.0
8885880483 main Bump bandit from 1.7.5 to 1.7.8 (#8) Bumps [bandit](https://github.com/PyCQA/bandit) from 1.7.5 to 1.7.8. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/PyCQA/bandit/releases">bandit's releases</a>... push 29 Apr 2024 09:49PM UTC web-flow github
100.0
8723334722 main Bump pylint from 2.17.6 to 2.17.7 (#5) Bumps [pylint](https://github.com/pylint-dev/pylint) from 2.17.6 to 2.17.7. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pylint-dev/pylint/commit/dade880a65386de8c4e0f88e46... push 17 Apr 2024 02:05PM UTC web-flow github
100.0
8723226331 main Bump pytest-mock from 3.11.1 to 3.14.0 (#4) Bumps [pytest-mock](https://github.com/pytest-dev/pytest-mock) from 3.11.1 to 3.14.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pytest-dev/pytest-mo... push 17 Apr 2024 01:58PM UTC web-flow github
100.0
8723207057 main Bump mypy from 1.5.1 to 1.9.0 (#3) Bumps [mypy](https://github.com/python/mypy) from 1.5.1 to 1.9.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/python/mypy/blob/master/CHANGELOG.md">mypy's changelo... push 17 Apr 2024 01:57PM UTC web-flow github
100.0
8723185755 main Bump twine from 4.0.0 to 4.0.2 (#2) Bumps [twine](https://github.com/pypa/twine) from 4.0.0 to 4.0.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pypa/twine/releases">twine's releases</a>.</em><... push 17 Apr 2024 01:56PM UTC web-flow github
100.0
8723148939 main Bump typeguard from 4.1.5 to 4.2.1 (#1) Bumps [typeguard](https://github.com/agronholm/typeguard) from 4.1.5 to 4.2.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/agronholm/typeguard/releases">t... push 17 Apr 2024 01:53PM UTC web-flow github
100.0
See All Builds (48)
  • Repo on GitHub
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc