Skip to content

Commit

Permalink
Merge pull request #2 from hivesolutions/python3.12
Browse files Browse the repository at this point in the history
feat: add python 3.12
  • Loading branch information
joamag authored Nov 21, 2023
2 parents e98165e + 66d900f commit d360f81
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,26 @@ jobs:
timeout-minutes: 10
strategy:
matrix:
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, "3.10", "3.11", rc]
python-version: [
2.7,
3.5,
3.6,
3.7,
3.8,
3.9,
"3.10",
"3.11",
"3.12",
latest,
rc,
]
runs-on: ubuntu-latest
container: python:${{ matrix.python-version }}
steps:
- uses: actions/checkout@v1
- run: python --version
- run: pip install -r requirements.txt
- run: pip install .
- run: pip install --no-cache-dir -r requirements.txt
- run: pip install --no-cache-dir .
- run: cleanup .
- run: python setup.py test
build-pypy:
Expand All @@ -27,5 +39,5 @@ jobs:
steps:
- uses: actions/checkout@v1
- run: pypy --version
- run: pip install -r requirements.txt
- run: pip install --no-cache-dir -r requirements.txt
- run: pypy setup.py test

0 comments on commit d360f81

Please sign in to comment.