Skip to content

Commit e9c4bd5

Browse files
committed
Merge branch 'main' into fix-easy-install-pth-file-not-reloaded-before-save
2 parents d2de992 + 98e5aa4 commit e9c4bd5

File tree

507 files changed

+38051
-28384
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

507 files changed

+38051
-28384
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 60.9.3
2+
current_version = 67.7.2
33
commit = True
44
tag = True
55

.coveragerc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
omit =
33
# leading `*/` for pytest-dev/pytest-cov#456
44
*/.tox/*
5+
disable_warnings =
6+
couldnt-parse
7+
8+
# local
9+
*/_validate_pyproject/* # generated code, tested in `validate-pyproject`
510

611
[report]
712
show_missing = True

.editorconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,6 @@ max_line_length = 88
1414
[*.{yml,yaml}]
1515
indent_style = space
1616
indent_size = 2
17+
18+
[*.rst]
19+
indent_style = space

.flake8

Lines changed: 0 additions & 15 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,13 @@ body:
9595
label: How to Reproduce
9696
description: >-
9797
Describe the steps to reproduce this bug.
98+
99+
Please try to create a [minimal reproducer](https://stackoverflow.com/help/minimal-reproducible-example),
100+
and avoid things like "see the steps in the CI logs".
98101
placeholder: |
99-
1. Integrate setuptools via '...'
102+
1. Clone a simplified example: `git clone ...`
103+
2. Create a virtual environment for isolation with `...`
104+
2. Build the project with setuptools via '...'
100105
2. Then run '...'
101106
3. An error occurs.
102107
validations:

.github/workflows/ci-sage.yml

Lines changed: 22 additions & 77 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ on:
3737
push:
3838
tags:
3939
- '*'
40+
pull_request:
41+
paths:
42+
- .github/workflows/ci-sage.yml
4043
workflow_dispatch:
4144
# Allow to run manually
4245

@@ -45,19 +48,6 @@ env:
4548
DIST_PREREQ: python3
4649
# Name of this project in the Sage distribution
4750
SPKG: setuptools
48-
# Sage distribution packages to build
49-
TARGETS_PRE: build/make/Makefile
50-
TARGETS: setuptools pyzmq
51-
TARGETS_OPTIONAL: build/make/Makefile
52-
# Standard setting: Test the current beta release of Sage:
53-
SAGE_REPO: sagemath/sage
54-
SAGE_REF: develop
55-
# Test with the branch from https://trac.sagemath.org/ticket/33288
56-
# This may provide hotfixes for the CI that have not been merged into
57-
# the sage develop branch yet.
58-
SAGE_TRAC_GIT: https://github.com/sagemath/sagetrac-mirror.git
59-
SAGE_TICKET: 33288
60-
REMOVE_PATCHES: "*"
6151

6252
jobs:
6353

@@ -85,68 +75,23 @@ jobs:
8575
path: upstream
8676
name: upstream
8777

88-
docker:
89-
runs-on: ubuntu-latest
78+
linux:
79+
# https://github.com/sagemath/sage/blob/develop/.github/workflows/docker.yml
80+
# Use branch of ticket https://trac.sagemath.org/ticket/33288
81+
uses: sagemath/sagetrac-mirror/.github/workflows/docker.yml@u/mkoeppe/setuptools_ci_target
82+
with:
83+
# Sage distribution packages to build
84+
targets: setuptools pyzmq
85+
# Standard setting: Test the current beta release of Sage:
86+
sage_repo: sagemath/sage
87+
sage_ref: develop
88+
upstream_artifact: upstream
89+
sage_trac_git: https://github.com/sagemath/sagetrac-mirror.git
90+
# Test with the branch from https://trac.sagemath.org/ticket/33288
91+
# This may provide hotfixes for the CI that have not been merged into
92+
# the sage develop branch yet.
93+
sage_trac_ticket: 33288
94+
# We prefix the image name with the SPKG name ("setuptools-") to avoid the error
95+
# 'Package "sage-docker-..." is already associated with another repository.'
96+
docker_push_repository: ghcr.io/${{ github.repository }}/setuptools-
9097
needs: [dist]
91-
strategy:
92-
fail-fast: false
93-
max-parallel: 32
94-
matrix:
95-
tox_system_factor: [ubuntu-trusty, ubuntu-xenial, ubuntu-bionic, ubuntu-focal, ubuntu-hirsute, ubuntu-impish, ubuntu-jammy, debian-stretch, debian-buster, debian-bullseye, debian-bookworm, debian-sid, linuxmint-17, linuxmint-18, linuxmint-19, linuxmint-19.3, linuxmint-20.1, linuxmint-20.2, linuxmint-20.3, fedora-26, fedora-27, fedora-28, fedora-29, fedora-30, fedora-31, fedora-32, fedora-33, fedora-34, fedora-35, centos-7, centos-stream-8, centos-stream-9, gentoo-python3.9, archlinux-latest, opensuse-15, opensuse-15.3, opensuse-tumbleweed, slackware-14.2, ubuntu-bionic-i386, manylinux-2_24-i686, debian-buster-i386, centos-7-i386]
96-
tox_packages_factor: [minimal, standard]
97-
env:
98-
TOX_ENV: docker-${{ matrix.tox_system_factor }}-${{ matrix.tox_packages_factor }}
99-
LOGS_ARTIFACT_NAME: logs-commit-${{ github.sha }}-tox-docker-${{ matrix.tox_system_factor }}-${{ matrix.tox_packages_factor }}
100-
DOCKER_TARGETS: configured with-targets with-targets-optional
101-
steps:
102-
- name: Check out SageMath
103-
uses: actions/checkout@v2
104-
with:
105-
repository: ${{ env.SAGE_REPO }}
106-
ref: ${{ env.SAGE_REF }}
107-
fetch-depth: 2000
108-
if: env.SAGE_REPO != ''
109-
- name: Check out git-trac-command
110-
uses: actions/checkout@v2
111-
with:
112-
repository: sagemath/git-trac-command
113-
path: git-trac-command
114-
if: env.SAGE_TRAC_GIT != ''
115-
- name: Check out SageMath from trac.sagemath.org
116-
shell: bash {0}
117-
run: |
118-
git config --global user.email "[email protected]"
119-
git config --global user.name "ci-sage workflow"
120-
if [ ! -d .git ]; then git init; fi; git remote add trac ${{ env.SAGE_TRAC_GIT }} && x=1 && while [ $x -le 5 ]; do x=$(( $x + 1 )); sleep $(( $RANDOM % 60 + 1 )); if git-trac-command/git-trac fetch $SAGE_TICKET; then git merge FETCH_HEAD || echo "(ignored)"; exit 0; fi; sleep 40; done; exit 1
121-
if: env.SAGE_TRAC_GIT != ''
122-
- uses: actions/download-artifact@v2
123-
with:
124-
path: upstream
125-
name: upstream
126-
- name: Install test prerequisites
127-
run: |
128-
sudo DEBIAN_FRONTEND=noninteractive apt-get update
129-
sudo DEBIAN_FRONTEND=noninteractive apt-get install tox python3-setuptools
130-
- name: Update Sage packages from upstream artifact
131-
run: |
132-
(export PATH=$(pwd)/build/bin:$PATH; (cd upstream && bash -x update-pkgs.sh) && sed -i.bak '/upstream/d' .dockerignore && echo "/:toolchain:/i ADD upstream upstream" | sed -i.bak -f - build/bin/write-dockerfile.sh && git diff)
133-
- name: Configure and build Sage distribution within a Docker container
134-
run: |
135-
set -o pipefail; EXTRA_DOCKER_BUILD_ARGS="--build-arg USE_MAKEFLAGS=\"-k V=0 SAGE_NUM_THREADS=3\"" tox -e $TOX_ENV -- $TARGETS 2>&1 | sed "/^configure: notice:/s|^|::warning file=artifacts/$LOGS_ARTIFACT_NAME/config.log::|;/^configure: warning:/s|^|::warning file=artifacts/$LOGS_ARTIFACT_NAME/config.log::|;/^configure: error:/s|^|::error file=artifacts/$LOGS_ARTIFACT_NAME/config.log::|;"
136-
- name: Copy logs from the Docker image or build container
137-
run: |
138-
mkdir -p "artifacts/$LOGS_ARTIFACT_NAME"
139-
cp -r .tox/$TOX_ENV/Dockerfile .tox/$TOX_ENV/log "artifacts/$LOGS_ARTIFACT_NAME"
140-
if [ -f .tox/$TOX_ENV/Dockertags ]; then CONTAINERS=$(docker create $(tail -1 .tox/$TOX_ENV/Dockertags) /bin/bash || true); fi
141-
if [ -n "$CONTAINERS" ]; then for CONTAINER in $CONTAINERS; do for ARTIFACT in /sage/logs; do docker cp $CONTAINER:$ARTIFACT artifacts/$LOGS_ARTIFACT_NAME && HAVE_LOG=1; done; if [ -n "$HAVE_LOG" ]; then break; fi; done; fi
142-
if: always()
143-
- uses: actions/upload-artifact@v2
144-
with:
145-
path: artifacts
146-
name: ${{ env.LOGS_ARTIFACT_NAME }}
147-
if: always()
148-
- name: Print out logs for immediate inspection
149-
# and markup the output with GitHub Actions logging commands
150-
run: |
151-
.github/workflows/scan-logs.sh "artifacts/$LOGS_ARTIFACT_NAME"
152-
if: always()

0 commit comments

Comments
 (0)