Skip to content

Commit

Permalink
Merge pull request #35 from OpenDataServices/2024-09-27
Browse files Browse the repository at this point in the history
2024 09 27
  • Loading branch information
odscjames authored Sep 27, 2024
2 parents da30719 + 78098a1 commit de55998
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9
architecture: x64
- uses: actions/cache@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11']
python-version: [ '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v2
- name: Setup python
Expand Down
13 changes: 8 additions & 5 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,19 @@ version: 2

# Set the version of Python and other tools you might need
build:
os: ubuntu-22.04
os: ubuntu-24.04
tools:
python: "3.8"
python: "3.9"

# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: docs/conf.py

# We recommend specifying your dependencies to enable reproducible builds:
# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
# python:
# install:
# - requirements: docs/requirements.txt
python:
install:
- method: pip
path: .
extra_requirements:
- dev
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

### Removed

- Python 3.7 and 3.8 support, due to end of life dates.

## [0.5.0] - 2022-10-19

### Removed
Expand Down
6 changes: 1 addition & 5 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,4 @@

master_doc = "index"

extensions = [
"sphinx_rtd_theme",
]

html_theme = "sphinx_rtd_theme"
html_theme = "odsc_default_sphinx_theme"
2 changes: 1 addition & 1 deletion docs/requirements.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Requirements
============

Python 3.6+
Python 3.9+

Currently only works with Excel 2010+ xlsx files.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
url="https://github.com/OpenDataServices/spreadsheet-forms",
license="MIT",
description="Tools for forms in spreadsheets; creating, extracting submitted data and filling with data",
python_requires=">=3.7",
python_requires=">=3.9",
install_requires=install_requires,
extras_require={
"dev": [
Expand All @@ -21,7 +21,7 @@
"isort",
"black==22.10.0",
"sphinx",
"sphinx_rtd_theme",
"odsc-default-sphinx-theme",
]
},
)

0 comments on commit de55998

Please sign in to comment.