Skip to content

Commit

Permalink
refresh supported python distros (#357)
Browse files Browse the repository at this point in the history
  • Loading branch information
bjlittle authored Apr 21, 2023
1 parent b662175 commit 7fb2627
Show file tree
Hide file tree
Showing 11 changed files with 23 additions and 291 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-locks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
ENV_NAME: "ci-locks"
strategy:
matrix:
lock: [py38-lock, py39-lock, py310-lock, py311-lock]
lock: [py39-lock, py310-lock, py311-lock]
steps:
- name: "Checkout"
uses: actions/checkout@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
version: [py38, py39, py310]
version: [py39, py310, py311]
include:
- os: ubuntu-latest
platform: linux
- os: ubuntu-latest
version: py310
version: py311
posargs: "--cov-report=xml --cov"
post-command: codecov
- version: py310
- version: py311
os: macos-latest
platform: osx
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- name: "Building ${{ matrix.os }} (${{ matrix.arch }}) wheels"
uses: pypa/cibuildwheel@v2.12.3
env:
CIBW_SKIP: "cp36-* cp37-* pp* *-musllinux*"
CIBW_SKIP: "cp36-* cp37-* cp38-* pp* *-musllinux*"
CIBW_ARCHS: ${{ matrix.arch }}
CIBW_BUILD_FRONTEND: build
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ local_scheme = "dirty-tag"

[tool.black]
line-length = 79
target-version = ["py38", "py39", "py310"]
target-version = ["py39", "py310", "py311"]
include = '\.pyi?$'
exclude = '''
(
Expand Down
6 changes: 6 additions & 0 deletions requirements/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# ⚠️

This directory contains:

- The `locks` directory which contains auto-generated `conda-lock` environment files for each `python` distribution and `platform` supported by `cf-units`.
- The `cf-units.yml` `conda` environment file which defines the **top-level** dependencies of `cf-units`.
5 changes: 5 additions & 0 deletions requirements/locks/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# ⚠️

This directory contains auto-generated `conda-lock` environment files for each `python` distribution supported by `cf-units`.

Please **do not** manually edit these files as they will be overwritten by the `ci-locks` GHA CI workflow.
97 changes: 0 additions & 97 deletions requirements/locks/py38-lock-linux-64.txt

This file was deleted.

Loading

0 comments on commit 7fb2627

Please sign in to comment.