Skip to content

Commit

Permalink
Updating for py3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
trollfot committed Nov 9, 2023
1 parent c1cfe20 commit 8159983
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 6 additions & 0 deletions docs/HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
CHANGES
=======

0.1.1 (2023-11-09)
------------------

* Cython update and included py3.11


0.1 (2022-03-16)
----------------

Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
cython
cython >= 3
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
from setuptools import setup, Extension, find_packages

version = "0.1"
version = "0.1.1"

install_requires = [
]
Expand All @@ -26,9 +26,9 @@
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Zope Public License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11'
],
packages=find_packages('src'),
package_dir={'': 'src'},
Expand Down

0 comments on commit 8159983

Please sign in to comment.