Skip to content

Commit

Permalink
[SCSB-145] require Python 3.10 (#46)
Browse files Browse the repository at this point in the history
* require Python 3.10

* Update pyproject.toml

* find other references to Python 3.9
  • Loading branch information
zacharyburnett authored Mar 15, 2024
1 parent d59e5a6 commit 035429a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ jobs:
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1
with:
envs: |
- linux: py39
- macos: py39
- linux: py310
- macos: py310
- linux: py311
Expand Down
8 changes: 4 additions & 4 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ pool:
vmImage: 'ubuntu-latest'
strategy:
matrix:
Python38:
python.version: '3.8'
Python39:
python.version: '3.9'
Python310:
python.version: '3.10'
Python311:
python.version: '3.11'
Python312:
python.version: '3.12'

steps:
- task: UsePythonVersion@0
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ dependencies = [
dynamic = [
"version",
]
requires-python = ">=3.10"

[project.readme]
file = "README.md"
Expand All @@ -37,8 +38,8 @@ test = [

[build-system]
requires = [
'setuptools >=60',
'setuptools_scm[toml] >=3.4',
"setuptools >=60",
"setuptools_scm[toml] >=3.4",
"wheel",
]
build-backend = "setuptools.build_meta"
Expand Down

0 comments on commit 035429a

Please sign in to comment.