Skip to content

Commit

Permalink
Dmcandrew update ruamel.yaml (#2315)
Browse files Browse the repository at this point in the history
  • Loading branch information
dcmcand authored Mar 19, 2024
2 parents 13923e4 + 3f55377 commit c2528dd
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: "3.11"

- name: Retrieve secret from Vault
uses: hashicorp/[email protected]
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,9 @@ jobs:
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
fail-fast: false
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}-${{ matrix.python-version }}
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/test_conda_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ jobs:
uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
python-version: 3.8
python-version: "3.10"
channels: conda-forge
activate-environment: nebari-dev

- name: Install dependencies
run: |
conda install build grayskull conda-build
conda install build grayskull conda-build conda-verify
- name: Generate sdist
run: |
Expand All @@ -52,3 +52,8 @@ jobs:
- name: Build conda package
run: |
conda build nebari
- name: Test conda package
run: |
conda install --use-local nebari
nebari --version
2 changes: 1 addition & 1 deletion .github/workflows/test_helm_charts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.8"
python-version: "3.11"
- name: Install additional Python dependencies
run: |
pip install python-hcl2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_local_integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
CONDA: /home/runnerx/miniconda3
with:
auto-update-conda: true
python-version: 3.8
python-version: "3.11"
miniconda-version: "latest"

- name: Install Nebari and playwright
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ Amazon [AWS](https://aws.amazon.com/), [GCP](https://cloud.google.com/ "Google C

- Operating System: Currently, Nebari supports development on macOS and Linux operating systems. Windows is NOT supported.
However, we would welcome contributions that add and improve support for Windows.
- You need Python >= 3.8 on your local machine or virtual environment to work on Nebari.
- You need Python >= 3.10 on your local machine or virtual environment to work on Nebari.
- Adopting virtual environments ([`conda`](https://docs.conda.io/en/latest/), [`pipenv`](https://github.com/pypa/pipenv) or
[`venv`](https://docs.python.org/3/library/venv.html)) is also encouraged.

Expand Down
12 changes: 5 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ name = "nebari"
dynamic = ["version"]
description = "A Jupyter and Dask-powered open source data science platform."
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.10"
license = "BSD-3-Clause"
authors = [
{ name = "Nebari development team", email = "[email protected]" },
Expand All @@ -42,8 +42,6 @@ classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Developers",
Expand All @@ -55,23 +53,23 @@ classifiers = [
]

dependencies = [
"auth0-python==4.4.2",
"auth0-python==4.7.1",
"azure-identity==1.12.0",
"azure-mgmt-containerservice==26.0.0",
"azure-mgmt-resource==23.0.1",
"bcrypt==4.0.1",
"boto3==1.28.40",
"boto3==1.34.63",
"cloudflare==2.11.7",
"kubernetes==27.2.0",
"pluggy==1.3.0",
"prompt-toolkit==3.0.36",
"pydantic==1.10.12",
"pynacl==1.5.0",
"python-keycloak==3.3.0",
"python-keycloak>=3.9.0",
"questionary==2.0.0",
"requests-toolbelt==1.0.0",
"rich==13.5.1",
"ruamel.yaml==0.17.32",
"ruamel.yaml==0.18.6",
"typer==0.9.0",
"packaging==23.2",
]
Expand Down

0 comments on commit c2528dd

Please sign in to comment.