Skip to content

Commit

Permalink
feat(dependencies): add python 3.11 support and drop python 3.6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Toilal committed Feb 18, 2023
1 parent 0377c73 commit 2fca75d
Show file tree
Hide file tree
Showing 27 changed files with 551 additions and 322 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10", "pypy-3.6", "pypy-3.7" ]
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "pypy-3.8", "pypy-3.9" ]
regex: [ "1", "0" ]

steps:
- name: Setup python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Git User config
run: |
Expand Down Expand Up @@ -68,16 +68,16 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ 3.9 ]
python-version: [ 3.11 ]

steps:
- name: Setup python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand All @@ -99,11 +99,11 @@ jobs:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}

- name: Merge master to develop
uses: robotology/gh-action-nightly-merge@v1.3.2
uses: robotology/gh-action-nightly-merge@v1.4.0
with:
stable_branch: 'master'
development_branch: 'develop'
allow_ff: true
user_name: github-actions
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 2fca75d

Please sign in to comment.