Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactoring/re allow python 3.8 #53

Merged
merged 4 commits into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ "3.10" ]
python-version: [ "3.8", "3.10" ]
runs-on: ubuntu-latest

steps:
Expand Down
1 change: 1 addition & 0 deletions doc/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Changelog

* [unreleased](unreleased.md)
* [0.2.0](changes_0.2.0.md)
* [0.1.0](changes_0.1.0.md)
16 changes: 16 additions & 0 deletions doc/changes/changes_0.2.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# UDF Mock Python 0.2.0, released 2024-07-01

Code name: BugFix in Jupyter Notebooks

## Summary

This release fixes an OSError when running the executor in a Jupyter Notebook and updated dependencies.

### Bugs

* #48: Fixed the OSError when running the executor in a Jupyter Notebook.

### Refactorings

* #50: Update to Python 3.10
* #46: Fixed wrong package name in install instructions
13 changes: 3 additions & 10 deletions doc/changes/unreleased.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,9 @@
# UDF Mock Python 0.2.0, released T.B.D
# UDF Mock Python tbd released TBD

Code name: T.B.D
Code name: tbd

## Summary

T.B.D

### Bugs

* #48: Fixed the OSError when running the executor in a Jupyter Notebook.

### Refactorings

* #50: Update to Python 3.10
* #46: Fixed wrong package name in install instructions
n/a
Loading