Skip to content

Commit

Permalink
Python versions supported & OS's tested on
Browse files Browse the repository at this point in the history
  • Loading branch information
jarofgreen committed Jan 9, 2025
1 parent 8a37ce3 commit dd48a96
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 12 deletions.
14 changes: 2 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,9 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# Need to use an older Ubuntu so Python 3.6 is available
os: [macos-latest, windows-latest, ubuntu-20.04]
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10']
os: ubuntu-24.04
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13']
myst-parser-version: [ '<0.18.0', '>=0.18.0' ]
exclude:
# myst-parser 0.18.0 dropped support for Python 3.6
- python-version: '3.6'
myst-parser-version: '>=0.18.0'
# GitHub Actions dropped support for Python 3.6 on macos and windows
- os: macos-latest
python-version: '3.6'
- os: windows-latest
python-version: '3.6'
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

### Changed

- Dropped support for Python 3.8 and lower, as these are end of life
- Only test on Linux, as standard for Open Data Services libraries

## [0.5.0] - 2022-09-26

### Changed
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
author_email='[email protected]',
packages=['sphinxcontrib'],
url='https://github.com/OpenDataServices/sphinxcontrib-opendataservices',
python_requires=">=3.9.0",
install_requires=[
'docutils',
'jsonpointer',
Expand Down

0 comments on commit dd48a96

Please sign in to comment.