Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
# Conflicts:
#	pyproject.toml
  • Loading branch information
jaraco committed Apr 24, 2024
2 parents 41f3659 + bcf8f07 commit dec8805
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 8 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/main.yml
Expand Up @@ -4,8 +4,11 @@ on:
merge_group:
push:
branches-ignore:
# disabled for jaraco/skeleton#103
# - gh-readonly-queue/** # Temporary merge queue-related GH-made branches
# temporary GH branches relating to merge queues (jaraco/skeleton#93)
- gh-readonly-queue/**
tags:
# required if branches-ignore is supplied (jaraco/skeleton#103)
- '**'
pull_request:

permissions:
Expand All @@ -28,10 +31,10 @@ env:
jobs:
test:
strategy:
# https://blog.jaraco.com/efficient-use-of-ci-resources/
matrix:
python:
- "3.8"
- "3.11"
- "3.12"
platform:
- ubuntu-latest
Expand All @@ -42,10 +45,12 @@ jobs:
platform: ubuntu-latest
- python: "3.10"
platform: ubuntu-latest
- python: "3.11"
platform: ubuntu-latest
- python: pypy3.10
platform: ubuntu-latest
runs-on: ${{ matrix.platform }}
continue-on-error: ${{ matrix.python == '3.13' }}
continue-on-error: ${{ matrix.python == '3.13' || (matrix.python == '3.8' || matrix.python == '3.9') && matrix.platform == 'macos-latest' }}
steps:
- uses: actions/checkout@v4
- name: Setup Python
Expand Down
4 changes: 4 additions & 0 deletions .readthedocs.yaml
Expand Up @@ -10,3 +10,7 @@ build:
os: ubuntu-lts-latest
tools:
python: latest
# post-checkout job to ensure the clone isn't shallow jaraco/skeleton#114
jobs:
post_checkout:
- git fetch --unshallow || true
7 changes: 4 additions & 3 deletions pyproject.toml
Expand Up @@ -17,7 +17,8 @@ classifiers = [
"Programming Language :: Python :: 3 :: Only",
]
requires-python = ">=3.8"
dependencies = []
dependencies = [
]
dynamic = ["version"]

[project.urls]
Expand All @@ -26,10 +27,10 @@ Homepage = "https://github.com/jaraco/zipp"
[project.optional-dependencies]
testing = [
# upstream
"pytest >= 6",
"pytest >= 6, != 8.1.*",
"pytest-checkdocs >= 2.4",
"pytest-cov",
'pytest-mypy; python_implementation != "PyPy"', # workaround for jaraco/skeleton#22
"pytest-mypy",
"pytest-enabler >= 2.2",
"pytest-ruff >= 0.2.1",

Expand Down
5 changes: 4 additions & 1 deletion pytest.ini
@@ -1,6 +1,9 @@
[pytest]
norecursedirs=dist build .tox .eggs
addopts=--doctest-modules
addopts=
--doctest-modules
--import-mode importlib
consider_namespace_packages=true
filterwarnings=
## upstream

Expand Down

0 comments on commit dec8805

Please sign in to comment.