Skip to content
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
13 changes: 2 additions & 11 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,7 @@ jobs:
matrix:
# for actions/setup-python:
# https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
python:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12.0-beta - 3.12"
python: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
os: [ ubuntu-latest, macOS-latest ]

steps:
Expand All @@ -44,11 +39,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, macOS-latest ]
conda-py:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
conda-py: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]

steps:
- uses: actions/checkout@v4
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: check
name: nightly

on:
push:
Expand All @@ -12,11 +12,12 @@ on:

jobs:
test-nightly:
if: false
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: [ "3.12-dev" ]
python: [ "3.13-dev" ]

steps:
- uses: actions/checkout@v4
Expand Down
5 changes: 2 additions & 3 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,12 @@

nox.options.default_venv_backend = 'conda'

SUPPORTED_PYTHONS = ['3.8', '3.9', '3.10', '3.11']
SUPPORTED_PYTHONS = ['3.8', '3.9', '3.10', '3.11', '3.12']

OS = platform.system()
RELEASE = platform.release()
PYCDS_ROOT = os.path.dirname(__file__)

DISABLE_SITE_HOOK_KEY = 'DISABLE_SITE_HOOK'
CDS_PYPERFORMANCE = 'git+https://github.com/oraluben/pyperformance.git@cds'


Expand Down Expand Up @@ -93,7 +92,7 @@ def tests_multiple_conda(session: nox.Session):
Package('pyparsing'),
Package('sqlalchemy'),
Package('werkzeug'),
Package('aiohttp'),
Package('aiohttp', skip=lambda _py: _py in ('3.12',)),
Package('google-cloud-storage', module='google.cloud.storage'),
Package('flask'),
Package('azure-core', module='azure.core'),
Expand Down