Skip to content

Commit

Permalink
Merge pull request #158 from shakedzy/py3.12support
Browse files Browse the repository at this point in the history
Python 3.12 Support
  • Loading branch information
shakedzy authored Jan 27, 2024
2 parents 9e65935 + bdb6220 commit fa816e4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
build:
strategy:
matrix:
version: ["3.10"]
version: ["3.10", "3.12"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
test:
strategy:
matrix:
version: [ "3.8", "3.9", "3.10", "3.11" ]
version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Change Log

# 0.7.5 _(dev)_
## 0.7.5 _(dev)_
* Adding type hints to all functions (issue [#153](https://github.com/shakedzy/dython/issues/153))
* Dropping dependency in `scikit-plot` as it is no longer maintained (issue [#156](https://github.com/shakedzy/dython/issues/156))
* Support for Python 3.12 (issue [#155](https://github.com/shakedzy/dython/issues/155))

## 0.7.4
* Handling running plotting functions with `plot=False` in Jupyter and truly avoid plotting (issue [#147](https://github.com/shakedzy/dython/issues/147))
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
EXTRAS_REQUIRE = {"dev": [s.strip() for s in dev_requirements.split("\n")]}

CLASSIFIERS = [
f"Programming Language :: Python :: 3.{str(v)}" for v in range(8, 12)
f"Programming Language :: Python :: 3.{str(v)}" for v in range(8, 13)
]
PYTHON_REQUIRES = ">=3.8"

Expand Down

0 comments on commit fa816e4

Please sign in to comment.