Skip to content

Commit d0c656b

Browse files
authored
Update supported Pythons and fix links (#291)
* Update supported Pythons and fix links * address warning from ipykernel * fix warning filter * fix warning filter * fix warning filter * update test
1 parent b44a933 commit d0c656b

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
os: [ubuntu-latest, macos-latest]
24-
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
24+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2525

2626
env:
2727
OS: ${{ matrix.os }}

README.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ A Jupyter kernel base class in Python which includes core magic functions (inclu
33
.. image:: https://badge.fury.io/py/metakernel.png/
44
:target: http://badge.fury.io/py/metakernel
55

6-
.. image:: https://coveralls.io/repos/Calysto/metakernel/badge.png?branch=main
7-
:target: https://coveralls.io/r/Calysto/metakernel
8-
96
.. image:: https://github.com/Calysto/metakernel/actions/workflows/tests.yml/badge.svg?query=branch%3Amain++
107
:target: https://github.com/Calysto/metakernel/actions/workflows/tests.yml
118

metakernel/tests/test_magic.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ def test_get_help():
4848

4949
dummy_help = d.get_help('line', 'dummy', 0)
5050
assert dummy_help.startswith("%dummy")
51-
assert " This is additional information on dummy" in d.line_dummy.__doc__, "Checking indents"
52-
assert "\nThis is additional information on dummy" in dummy_help, "Checking indent removal"
5351

5452
dummy_help = d.get_help('line', 'dummy', 1)
5553
# will show this entire file, including this sentence

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ classifiers = [
1313
"Topic :: System :: Shells",
1414
]
1515
urls = {Homepage = "https://github.com/Calysto/metakernel"}
16-
requires-python = ">=3.8"
16+
requires-python = ">=3.9"
1717
dependencies = [
1818
"ipykernel >=5.5.6,<7",
1919
"jupyter_core >=4.9.2",
@@ -61,4 +61,5 @@ filterwarnings= [
6161
"ignore:Widget.* is deprecated:DeprecationWarning",
6262
"module:datetime.datetime.utc:DeprecationWarning:dateutil",
6363
"module:datetime.datetime.utc:DeprecationWarning:ipyparallel",
64+
"module:Parsing dates involving a day of month without a year:DeprecationWarning",
6465
]

0 commit comments

Comments
 (0)