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

Release 3.2.0 #1041

Merged
merged 2 commits into from
May 23, 2023
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/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python_version: ["3.8", "3.9", "3.10"]
python_version: ["3.8", "3.9", "3.10", "3.11"]
fail-fast: false
steps:
- uses: actions/checkout@v2
Expand Down
5 changes: 5 additions & 0 deletions docs/reference/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
Release Log
===========

graspologic 3.2.0
-----------------
- Added Python 3.11 support
`#1039 <https://github.com/microsoft/graspologic/pull/1039>`

graspologic 3.1.0
-----------------
- Added density and group connection tests
Expand Down
2 changes: 1 addition & 1 deletion graspologic/models/edge_swaps.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,4 +212,4 @@ def _edge_swap(
return adjacency, edge_list


_edge_swap_numba = nb.jit(_edge_swap)
_edge_swap_numba = nb.jit(_edge_swap, nopython=False)
5 changes: 3 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = graspologic
version = 3.1.0
version = 3.2.0

description = A set of python modules for graph statistics
long_description = file: README.md
Expand All @@ -20,11 +20,12 @@ classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11

[options]
packages = find:
include_package_data = True
python_requires = >=3.8, <3.11
python_requires = >=3.8, <3.12
install_requires =
anytree>=2.8.0
beartype>=0.10.0
Expand Down