Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python 3.11 support #858

Merged
merged 23 commits into from
May 31, 2023
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
4 changes: 2 additions & 2 deletions .github/workflows/ab_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: "3.10"

- name: Install dependencies
run: pip install PyYaml
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: "3.10"

- name: Install dependencies
run: pip install alembic
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ jobs:
# python-version: "3.9"
# os: ubuntu-latest
- pytest_args: tests/stability
python-version: "3.10"
python-version: "3.11"
os: ubuntu-latest
- pytest_args: tests/stability
python-version: "3.10"
python-version: "3.11"
os: ubuntu-latest
# Run stability tests on Python Windows and MacOS (latest py39 only)
- pytest_args: tests/stability
Expand Down
2 changes: 1 addition & 1 deletion AB_environments/AB_baseline.conda.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies:
- dask-labextension ==6.1.0
- lz4 ==4.3.2
- ipywidgets ==8.0.4 # FIXME https://github.com/dask/distributed/issues/7688
- numba ==0.56.4
- numba ==0.57.0
- scikit-learn ==1.2.2
- ipycytoscape ==1.3.3
- click ==8.1.3
Expand Down
2 changes: 1 addition & 1 deletion AB_environments/AB_sample.conda.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencies:
- dask-labextension ==6.1.0
- lz4 ==4.3.2
- ipywidgets ==8.0.4 # FIXME https://github.com/dask/distributed/issues/7688
- numba ==0.56.4
- numba ==0.57.0
- scikit-learn ==1.2.2
- ipycytoscape ==1.3.3
- click ==8.1.3
Expand Down
4 changes: 2 additions & 2 deletions ci/environment.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
channels:
- conda-forge
dependencies:
- python >=3.9,<3.11 # numba is not yet available on Python 3.11
- python >=3.9
- pip
- coiled >=0.2.54
- numpy ==1.23.5
Expand All @@ -16,7 +16,7 @@ dependencies:
- dask-labextension ==6.1.0
- lz4 ==4.3.2
- ipywidgets ==8.0.4 # FIXME https://github.com/dask/distributed/issues/7688
- numba ==0.56.4
- numba ==0.57.0
- scikit-learn ==1.2.2
- ipycytoscape ==1.3.3
- click ==8.1.3
Expand Down