Skip to content

Commit

Permalink
Merge pull request #870 from CZ-NIC/deprecate_py37
Browse files Browse the repository at this point in the history
Remove Python 3.7
  • Loading branch information
tpazderka committed Feb 28, 2024
2 parents 0e30cd2 + f0e8046 commit 37024ad
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python: [3.7, 3.8, 3.9, "3.10", "3.11"]
python: [3.8, 3.9, "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
Expand Down
12 changes: 9 additions & 3 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
version: 2

build:
os: ubuntu-22.04
tools:
python: "3.11"

sphinx:
configuration: doc/conf.py

python:
install:
- path: .
extra_requirements:
- docs
- requirements: doc/requirements.txt
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ The format is based on the [KeepAChangeLog] project.

## Unreleased

### Removed

- [#870]: Remove Python 3.7

[#870]: https://github.com/CZ-NIC/pyoidc/pull/870

## 1.6.1 [2023-07-13]
- [#862] Fixed pydantic dependency

Expand Down
1 change: 0 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ image:

environment:
matrix:
- TOXENV: py37
- TOXENV: py38
- TOXENV: py39
- TOXENV: py310
Expand Down
20 changes: 20 additions & 0 deletions doc/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
alabaster==0.7.16
autodoc-pydantic==2.0.1
Babel==2.14.0
docutils==0.20.1
imagesize==1.4.1
Jinja2==3.1.3
pydantic==2.6.2
pydantic-settings==2.2.1
pydantic_core==2.16.3
Pygments==2.17.2
readme_renderer==43.0
snowballstemmer==2.2.0
Sphinx==7.2.6
sphinx-autobuild==2024.2.4
sphinxcontrib-applehelp==1.0.8
sphinxcontrib-devhelp==1.0.6
sphinxcontrib-htmlhelp==2.0.5
sphinxcontrib-jsmath==1.0.1
sphinxcontrib-qthelp==1.0.7
sphinxcontrib-serializinghtml==1.1.10
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,12 @@ def run_tests(self):
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules"],
python_requires='~=3.7',
python_requires='~=3.8',
extras_require={
'develop': ["cherrypy==3.2.4", "pyOpenSSL"],
'testing': tests_requires,
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{37,38,39,310,311},docs,quality
envlist = py{38,39,310,311},docs,quality
skip_missing_interpreters = True

[testenv]
Expand Down

0 comments on commit 37024ad

Please sign in to comment.