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: 5 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Generated from:
# https://github.com/zopefoundation/meta/tree/master/config/zope-product
# DO NOT EDIT THIS FILE BY HAND. Generated with
# zope.meta (https://zopemeta.readthedocs.io/) from templates in
# https://github.com/dataflake/meta/tree/master/zope-product and
# https://github.com/zopefoundation/meta/tree/master/src/zope/meta/zope-product
#
# EditorConfig Configuration file, for more details see:
# https://EditorConfig.org
Expand All @@ -12,7 +14,7 @@
root = true


[*] # For All Files
[*]
# Unix-style newlines with a newline ending every file
end_of_line = lf
insert_final_newline = true
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Generated from:
# https://github.com/zopefoundation/meta/tree/master/config/zope-product
# DO NOT EDIT THIS FILE BY HAND. Generated with
# zope.meta (https://zopemeta.readthedocs.io/) from templates in
# https://github.com/dataflake/meta/tree/master/zope-product and
# https://github.com/zopefoundation/meta/tree/master/src/zope/meta/zope-product
name: pre-commit

on:
Expand All @@ -21,7 +23,7 @@ jobs:
name: linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: '3.13'
Expand Down
16 changes: 7 additions & 9 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Generated from:
# https://github.com/zopefoundation/meta/tree/master/config/zope-product
# DO NOT EDIT THIS FILE BY HAND. Generated with
# zope.meta (https://zopemeta.readthedocs.io/) from templates in
# https://github.com/dataflake/meta/tree/master/zope-product and
# https://github.com/zopefoundation/meta/tree/master/src/zope/meta/zope-product
name: tests

on:
Expand Down Expand Up @@ -36,12 +38,12 @@ jobs:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
name: ${{ matrix.config[1] }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Install uv + caching
# astral/setup-uv@7.1.3
uses: astral-sh/setup-uv@5a7eac68fb9809dea845d802897dc5c723910fa3
# astral/setup-uv@7.6.0
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78
with:
enable-cache: true
cache-dependency-glob: |
Expand All @@ -50,11 +52,7 @@ jobs:
python-version: ${{ matrix.config[0] }}
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Test
if: ${{ !startsWith(runner.os, 'Mac') }}
run: uvx --with tox-uv tox -e ${{ matrix.config[1] }}
- name: Test (macOS)
if: ${{ startsWith(runner.os, 'Mac') }}
run: uvx --with tox-uv tox -e ${{ matrix.config[1] }}-universal2
- name: Coverage
if: matrix.config[1] == 'coverage'
run: |
Expand Down
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Generated from:
# https://github.com/zopefoundation/meta/tree/master/config/zope-product
# DO NOT EDIT THIS FILE BY HAND. Generated with
# zope.meta (https://zopemeta.readthedocs.io/) from templates in
# https://github.com/dataflake/meta/tree/master/zope-product and
# https://github.com/zopefoundation/meta/tree/master/src/zope/meta/zope-product
*.dll
*.egg-info/
*.profraw
Expand Down Expand Up @@ -28,5 +30,6 @@ lib64
log/
parts/
pyvenv.cfg
share/
testing.log
var/
9 changes: 6 additions & 3 deletions .meta.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# Generated from:
# https://github.com/zopefoundation/meta/tree/master/config/zope-product
# DO NOT EDIT THIS FILE BY HAND. Generated with
# zope.meta (https://zopemeta.readthedocs.io/) from templates in
# https://github.com/dataflake/meta/tree/master/zope-product and
# https://github.com/zopefoundation/meta/tree/master/src/zope/meta/zope-product
[meta]
template = "zope-product"
commit-id = "9fcd3d67"
commit-id = "d21f9691"

[python]
with-windows = false
Expand All @@ -11,6 +13,7 @@ with-future-python = false
with-docs = true
with-sphinx-doctests = false
with-macos = false
with-free-threaded-python = false

[tox]
use-flake8 = true
Expand Down
11 changes: 7 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# Generated from:
# https://github.com/zopefoundation/meta/tree/master/config/zope-product
# DO NOT EDIT THIS FILE BY HAND. Generated with
# zope.meta (https://zopemeta.readthedocs.io/) from templates in
# https://github.com/dataflake/meta/tree/master/zope-product and
# https://github.com/zopefoundation/meta/tree/master/src/zope/meta/zope-product
minimum_pre_commit_version: '3.6'
repos:
- repo: https://github.com/pycqa/isort
rev: "7.0.0"
rev: "8.0.1"
hooks:
- id: isort
- repo: https://github.com/hhatto/autopep8
Expand All @@ -12,14 +14,15 @@ repos:
- id: autopep8
args: [--in-place, --aggressive, --aggressive]
- repo: https://github.com/asottile/pyupgrade
rev: v3.21.0
rev: v3.21.2
hooks:
- id: pyupgrade
args: [--py310-plus]
- repo: https://github.com/isidentical/teyit
rev: 0.4.3
hooks:
- id: teyit
language_version: python3.13
- repo: https://github.com/PyCQA/flake8
rev: "7.3.0"
hooks:
Expand Down
6 changes: 4 additions & 2 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Generated from:
# https://github.com/zopefoundation/meta/tree/master/config/zope-product
# DO NOT EDIT THIS FILE BY HAND. Generated with
# zope.meta (https://zopemeta.readthedocs.io/) from templates in
# https://github.com/dataflake/meta/tree/master/zope-product and
# https://github.com/zopefoundation/meta/tree/master/src/zope/meta/zope-product
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

Expand Down
6 changes: 4 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<!--
Generated from:
https://github.com/zopefoundation/meta/tree/master/config/zope-product
DO NOT EDIT THIS FILE BY HAND. Generated with
zope.meta (https://zopemeta.readthedocs.io/) from templates in
https://github.com/dataflake/meta/tree/master/zope-product and
https://github.com/zopefoundation/meta/tree/master/src/zope/meta/zope-product
-->
# Contributing to dataflake projects

Expand Down
6 changes: 4 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Generated from:
# https://github.com/zopefoundation/meta/tree/master/config/zope-product
# DO NOT EDIT THIS FILE BY HAND. Generated with
# zope.meta (https://zopemeta.readthedocs.io/) from templates in
# https://github.com/dataflake/meta/tree/master/zope-product and
# https://github.com/zopefoundation/meta/tree/master/src/zope/meta/zope-product
include *.md
include *.rst
include *.txt
Expand Down
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Generated from:
# https://github.com/zopefoundation/meta/tree/master/config/zope-product
# DO NOT EDIT THIS FILE BY HAND. Generated with
# zope.meta (https://zopemeta.readthedocs.io/) from templates in
# https://github.com/dataflake/meta/tree/master/zope-product and
# https://github.com/zopefoundation/meta/tree/master/src/zope/meta/zope-product

[build-system]
requires = [
Expand Down
6 changes: 4 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Generated from:
# https://github.com/zopefoundation/meta/tree/master/config/zope-product
# DO NOT EDIT THIS FILE BY HAND. Generated with
# zope.meta (https://zopemeta.readthedocs.io/) from templates in
# https://github.com/dataflake/meta/tree/master/zope-product and
# https://github.com/zopefoundation/meta/tree/master/src/zope/meta/zope-product

[flake8]
doctests = 1
Expand Down
6 changes: 4 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Generated from:
# https://github.com/zopefoundation/meta/tree/master/config/zope-product
# DO NOT EDIT THIS FILE BY HAND. Generated with
# zope.meta (https://zopemeta.readthedocs.io/) from templates in
# https://github.com/dataflake/meta/tree/master/zope-product and
# https://github.com/zopefoundation/meta/tree/master/src/zope/meta/zope-product
[tox]
minversion = 3.18
envlist =
Expand Down
Loading