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
8 changes: 3 additions & 5 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,16 @@ jobs:
strategy:
matrix:
py:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "pypy-3.8"
- "pypy-3.10"
os:
- "ubuntu-latest"
- "windows-latest"
- "macos-12" # (later seem to fail building python)
- "macos-13"
architecture:
- x64
- x86
Expand All @@ -36,7 +34,7 @@ jobs:
# Linux and macOS don't have x86 python
- os: "ubuntu-latest"
architecture: x86
- os: "macos-12"
- os: "macos-13"
architecture: x86

name: "Python: ${{ matrix.py }}-${{ matrix.architecture }} on ${{ matrix.os }}"
Expand Down
4 changes: 2 additions & 2 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ version: 2

# Set the version of Python and other tools you might need
build:
os: ubuntu-20.04
os: ubuntu-lts-latest
tools:
python: "3.10"
python: "latest"

# Build documentation in the docs/ directory with Sphinx
sphinx:
Expand Down
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
3.3.0 (unreleased)
------------------

- Remove support for Python 3.7 and 3.8.

3.1.1 (2024-12-01)
------------------

Expand Down
6 changes: 2 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = venusian
version = 3.1.1
version = 3.2.0dev0
description = A library for deferring decorator actions
long_description = file: README.rst, CHANGES.rst
long_description_content_type = text/x-rst
Expand All @@ -11,8 +11,6 @@ classifiers =
Development Status :: 6 - Mature
Intended Audience :: Developers
Programming Language :: Python :: 3
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
Expand All @@ -29,7 +27,7 @@ author_email = pylons-devel@googlegroups.com
package_dir=
=src
packages=find:
python_requires = >=3.7
python_requires = >=3.9

[options.packages.find]
where=src
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
envlist =
lint,
py37,py38,py39,py310,py311,py312,py313,pypy3
py39,py310,py311,py312,py313,pypy3
docs,
coverage
isolated_build = True
Expand Down Expand Up @@ -32,8 +32,8 @@ commands =
black --check --diff .
check-manifest
# build sdist/wheel
python -m build .
twine check dist/*
python -m build -o {envdir}/dist .
twine check {envdir}/dist/*
deps =
black
build
Expand Down