Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.7, 3.8, 3.9, "3.10", 3.11]
python: [3.9, "3.10", 3.11]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: '3.8'
python-version: '3.11'
- name: Install tox
run: pip install tox==3.24.1
- name: Build docs
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
The intended audience of this file is for py42 consumers -- as such, changes that don't affect
how a consumer would use the library (e.g. adding unit tests, updating documentation, etc) are not captured here.

## Unreleased
## 1.27.3 - 2024-12-18

## Removed

- Ended support for python 3.8, which is end-of-life.

### Added

- A setting to add a prefix to the user-agent.


## 1.27.2 - 2024-11-27

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ point to your virtual environment, and you should be ready to go!

## Run a full build

We use [tox](https://tox.readthedocs.io/en/latest/#) to run our build against Python 3.6, 3.7, and 3.8. When run locally, `tox` will run only against the version of python that your virtual envrionment is running, but all versions will be validated against when you [open a PR](#opening-a-pr).
We use [tox](https://tox.readthedocs.io/en/latest/#) to run our build against Python 3.9, 3.10, and 3.11. When run locally, `tox` will run only against the version of python that your virtual envrionment is running, but all versions will be validated against when you [open a PR](#opening-a-pr).

To run all the unit tests, do a test build of the documentation, and check that the code meets all style requirements, simply run:

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
#
# This is also used if you do content translation via gettext catalogs.
# Usually you set "language" from the command line for these cases.
language = None
# language = None

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
Expand Down
13 changes: 6 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@
"tox==3.24.0",
],
"docs": [
"sphinx==4.4.0",
"myst-parser==0.17.2",
"sphinx_rtd_theme==1.0.0",
"docutils == 0.16",
"sphinx==8.1.3",
"myst-parser==4.0.0",
"sphinx_rtd_theme==3.0.2",
"docutils == 0.21.2",
],
},
classifiers=[
Expand All @@ -55,10 +55,9 @@
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"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",
"Programming Language :: Python :: Implementation :: CPython",
],
)
2 changes: 1 addition & 1 deletion src/py42/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# py42

__version__ = "1.27.2"
__version__ = "1.27.3"
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ commands =

[testenv:docs]
deps =
sphinx == 4.4.0
myst-parser == 0.17.2
sphinx_rtd_theme == 1.0.0
docutils == 0.16
sphinx == 8.1.3
myst-parser == 4.0.0
sphinx_rtd_theme == 3.0.2
docutils == 0.21.2

whitelist_externals = bash

Expand Down
Loading