Skip to content

Commit

Permalink
Merge pull request #24 from lsst/tickets/DM-41904
Browse files Browse the repository at this point in the history
DM-41904: Add python 3.12 to list
  • Loading branch information
timj committed Nov 30, 2023
2 parents 6937585 + 5cfa1de commit 08b1c85
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,24 +13,24 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
python-version: ["3.11", "3.12"]

steps:
- uses: actions/checkout@v3
with:
# Need to clone everything to determine version from git.
fetch-depth: 0
cache: "pip"
cache-dependency-path: "setup.cfg"

- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache-dependency-path: "setup.cfg"

- name: Update pip/wheel infrastructure
run: |
pip install --upgrade setuptools "pip<22" wheel
pip install --upgrade setuptools pip wheel
- name: Install dependencies
run: |
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:

- name: Install dependencies
run: |
python -m pip install --upgrade "pip<22"
python -m pip install --upgrade pip
pip install --upgrade setuptools wheel build
- name: Build and create distribution
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Astronomy",
]
keywords = ["lsst"]
Expand Down

0 comments on commit 08b1c85

Please sign in to comment.