Skip to content

Commit

Permalink
Fixes OpenCyphal#275, fixing python 3.11 (OpenCyphal#276)
Browse files Browse the repository at this point in the history
* Fixes OpenCyphal#275, fixing python 3.11

* bumping version for release
  • Loading branch information
thirtytwobits authored Jan 30, 2023
1 parent 8fff5a0 commit 496e32c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/test_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: sonar-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: /opt/sonar-scanner/.sonar/cache
key: sonar-scanner-cli-4.6.2.2472-${{ runner.os }}
key: sonar-scanner-cli-4.8.0.2856-${{ runner.os }}
- name: download-converage-reports
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
compat-test-python3:
strategy:
matrix:
python3-version: ['10']
python3-version: ['11']
python3-platform: ['ubuntu-latest', 'windows-latest', 'macos-latest']
include:
- python3-version: 6
Expand All @@ -110,6 +110,8 @@ jobs:
python3-platform: ubuntu-20.04
- python3-version: 9
python3-platform: ubuntu-20.04
- python3-version: 10
python3-platform: ubuntu-20.04
runs-on: ${{ matrix.python3-platform }}
needs: test
steps:
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3 :: Only
Topic :: Scientific/Engineering
Topic :: Software Development :: Embedded Systems
Expand All @@ -37,7 +38,7 @@ package_dir=
packages=find:
package_data={"nunavut": ["py.typed"]}
install_requires=
pydsdl ~= 1.16
pydsdl ~= 1.18
pyyaml
importlib-resources

Expand Down
2 changes: 1 addition & 1 deletion src/nunavut/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
.. autodata:: __version__
"""

__version__ = "2.0.0"
__version__ = "2.0.1"
__license__ = "MIT"
__author__ = "OpenCyphal"
__copyright__ = "Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Copyright (c) 2022 OpenCyphal."
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#
# We test nunavut using python 3.6 - 3.10.
# We test nunavut using python 3.6 - 3.11.
#
# The standard version to develop against is 3.10.
#
[tox]
envlist = {py36,py37,py38,py39,py310}-{test,nnvg,doctest,rstdoctest},lint,report,docs
envlist = {py36,py37,py38,py39,py310,py311}-{test,nnvg,doctest,rstdoctest},lint,report,docs


[base]
Expand Down

0 comments on commit 496e32c

Please sign in to comment.