Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jupyter/jupyter_client
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v7.4.4
Choose a base ref
...
head repository: jupyter/jupyter_client
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v7.4.5
Choose a head ref
  • 3 commits
  • 6 files changed
  • 2 contributors

Commits on Oct 25, 2022

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    46f3f8c View commit details

Commits on Nov 10, 2022

  1. Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    d27c8a4 View commit details
  2. Publish 7.4.5

    SHA256 hashes:
    
    jupyter_client-7.4.5-py3-none-any.whl: feaad9c04871254067d3b8c41192b7aba8e9bbbf9df9830ecf2673939510c5b7
    
    jupyter_client-7.4.5.tar.gz: 63eae06c40e1f2d9afa14447511fddc065c95dea3f2491fda2acccf91221954a
    blink1073 committed Nov 10, 2022
    Copy the full SHA
    763ff5f View commit details
Showing with 28 additions and 8 deletions.
  1. +1 −1 .github/workflows/check-release.yml
  2. +1 −1 .github/workflows/downstream.yml
  3. +3 −1 .github/workflows/main.yml
  4. +17 −2 CHANGELOG.md
  5. +1 −1 jupyter_client/_version.py
  6. +5 −2 pyproject.toml
2 changes: 1 addition & 1 deletion .github/workflows/check-release.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Check Release
on:
push:
branches: ["main"]
branches: ["7.x"]
pull_request:

concurrency:
2 changes: 1 addition & 1 deletion .github/workflows/downstream.yml
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ name: Test downstream projects

on:
push:
branches: ["main"]
branches: ["7.x"]
pull_request:

concurrency:
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ name: CI

on:
push:
branches: ["main"]
branches: ["7.x"]
pull_request:

concurrency:
@@ -50,6 +50,8 @@ jobs:
python-version: "3.9"
- os: ubuntu-latest
python-version: "pypy-3.8"
- os: ubuntu-latest
python-version: "3.11"
- os: macos-latest
python-version: "3.8"

19 changes: 17 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,23 @@

<!-- <START NEW CHANGELOG ENTRY> -->

## 7.4.5

([Full Changelog](https://github.com/jupyter/jupyter_client/compare/v7.4.4...d27c8a497c6cbb1a232fbbe75cb1fd0f53faa9b0))

### Maintenance and upkeep improvements

- \[7.x\] Handle Jupyter Core Warning [#875](https://github.com/jupyter/jupyter_client/pull/875) ([@blink1073](https://github.com/blink1073))
- Clean up 7.x workflows [#865](https://github.com/jupyter/jupyter_client/pull/865) ([@blink1073](https://github.com/blink1073))

### Contributors to this release

([GitHub contributors page for this release](https://github.com/jupyter/jupyter_client/graphs/contributors?from=2022-10-25&to=2022-11-10&type=c))

[@blink1073](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_client+involves%3Ablink1073+updated%3A2022-10-25..2022-11-10&type=Issues)

<!-- <END NEW CHANGELOG ENTRY> -->

## 7.4.4

([Full Changelog](https://github.com/jupyter/jupyter_client/compare/v7.4.3...4029f6cad9223b1287980a1f0e966ff66557386e))
@@ -16,8 +33,6 @@

[@meeseeksmachine](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_client+involves%3Ameeseeksmachine+updated%3A2022-10-19..2022-10-25&type=Issues)

<!-- <END NEW CHANGELOG ENTRY> -->

## 7.4.3

([Full Changelog](https://github.com/jupyter/jupyter_client/compare/v7.4.2...aa549b27d3622b1c381275777785f84dd3d5253d))
2 changes: 1 addition & 1 deletion jupyter_client/_version.py
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
from typing import List
from typing import Union

__version__ = "7.4.4"
__version__ = "7.4.5"

# Build up version_info tuple for backwards compatibility
pattern = r'(?P<major>\d+).(?P<minor>\d+).(?P<patch>\d+)(?P<rest>.*)'
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "jupyter_client"
version = "7.4.4"
version = "7.4.5"
description = "Jupyter protocol implementation and client libraries"
keywords = [ "Interactive", "Interpreter", "Shell", "Web",]
classifiers = [
@@ -93,7 +93,7 @@ skip = ["check-links"]
ignore = [".mailmap", "*.yml", "*.yaml"]

[tool.tbump.version]
current = "7.4.4"
current = "7.4.5"
regex = '''
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
((?P<channel>a|b|rc|.dev)(?P<release>\d+))?
@@ -135,6 +135,9 @@ filterwarnings= [
# We could eventually find a way to make sure these are only created
# when there is a running event loop.
"ignore:There is no current event loop:DeprecationWarning:zmq",

# Workaround for jupyter_core warning.
"module:Jupyter is migrating its paths to use standard platformdirs:DeprecationWarning",
]

[tool.mypy]