Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Don't test theme on 3.8 and 3.9 branches#177

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
willingc merged 1 commit intopython:mainfromhugovk:rm-3.8-3.9
Mar 16, 2024

Conversation

hugovk
Copy link
Member

Some time between 9th Feb and today, the CI test build have started failing:

There's been no changes in this repo.

Logs:

2024-03-16 09:42:45,381 DEBUG: Starting new HTTPS connection (1): raw.githubusercontent.com:4432024-03-16 09:42:45,421 DEBUG: https://raw.githubusercontent.com:443 "GET /python/devguide/main/include/release-cycle.json HTTP/1.1" 200 6012024-03-16 09:42:45,452 INFO: Cloning https://github.com/python/cpython.git into /home/runner/work/python-docs-theme/python-docs-theme/build_root/cpython2024-03-16 09:42:45,452 DEBUG: Run: 'git clone https://github.com/python/cpython.git /home/runner/work/python-docs-theme/python-docs-theme/build_root/cpython'2024-03-16 09:43:35,897 INFO en/3.9: Running.2024-03-16 09:43:35,897 DEBUG en/3.9: Run: 'git -C /home/runner/work/python-docs-theme/python-docs-theme/build_root/cpython show-ref -s origin/3.9'2024-03-16 09:43:35,900 DEBUG en/3.9: Run: 'git -C /home/runner/work/python-docs-theme/python-docs-theme/build_root/cpython reset --hard 200762426b4b9878c33cdef620aa1a51631dd5df --'2024-03-16 09:43:36,701 DEBUG en/3.9: Run: 'git -C /home/runner/work/python-docs-theme/python-docs-theme/build_root/cpython clean -dfqx'2024-03-16 09:43:36,710 INFO en/3.9: Should rebuild: no previous state found.2024-03-16 09:43:36,711 DEBUG en/3.9: Run: '/opt/hostedtoolcache/Python/3.12.2/x64/bin/python -m venv /home/runner/work/python-docs-theme/python-docs-theme/build_root/venv-3.9'2024-03-16 09:43:40,007 DEBUG en/3.9: Run: '/home/runner/work/python-docs-theme/python-docs-theme/build_root/venv-3.9/bin/python -m pip install --upgrade /home/runner/work/python-docs-theme/python-docs-theme jieba -rrequirements.txt'2024-03-16 09:43:44,866 ERROR en/3.9: Run: '/home/runner/work/python-docs-theme/python-docs-theme/build_root/venv-3.9/bin/python -m pip install --upgrade /home/runner/work/python-docs-theme/python-docs-theme jieba -rrequirements.txt' KO:    Collecting docutils==0.17.1 (from -r requirements.txt (line 10))      Downloading docutils-0.17.1-py2.py3-none-any.whl.metadata (2.9 kB)    Collecting jinja2==3.0.3 (from -r requirements.txt (line 12))      Downloading Jinja2-3.0.3-py3-none-any.whl.metadata (3.5 kB)    Collecting alabaster==0.7.13 (from -r requirements.txt (line 14))      Downloading alabaster-0.7.13-py3-none-any.whl.metadata (3.0 kB)    Collecting blurb (from -r requirements.txt (line 16))      Downloading blurb-1.1.0-py3-none-any.whl.metadata (9.7 kB)    ERROR: Cannot install python-docs-theme 2024.2 (from /home/runner/work/python-docs-theme/python-docs-theme) and python-docs-theme==2023.3.1 because these package versions have conflicting dependencies.        The conflict is caused by:        The user requested python-docs-theme 2024.2 (from /home/runner/work/python-docs-theme/python-docs-theme)        The user requested python-docs-theme==2023.3.1    To fix this you could try to:    1. loosen the range of package versions you've specified    2. remove package versions to allow pip attempt to solve the dependency conflict    ERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/topics/dependency-resolution/#dealing-with-dependency-conflicts    2024-03-16 09:43:44,884 ERROR en/3.9: Badly handled exception, human, please help.Traceback (most recent call last):  File "/home/runner/work/python-docs-theme/python-docs-theme/./docsbuild-scripts/build_docs.py", line 658, in run    self.build_venv()  File "/home/runner/work/python-docs-theme/python-docs-theme/./docsbuild-scripts/build_docs.py", line 794, in build_venv    run(  File "/home/runner/work/python-docs-theme/python-docs-theme/./docsbuild-scripts/build_docs.py", line 251, in run    result.check_returncode()  File "/opt/hostedtoolcache/Python/3.12.2/x64/lib/python3.12/subprocess.py", line 502, in check_returncode    raise CalledProcessError(self.returncode, self.args, self.stdout,subprocess.CalledProcessError: Command '['/home/runner/work/python-docs-theme/python-docs-theme/build_root/venv-3.9/bin/python', '-m', 'pip', 'install', '--upgrade', '/home/runner/work/python-docs-theme/python-docs-theme', 'jieba', '-rrequirements.txt']' returned non-zero exit status 1.2024-03-16 09:43:44,907 INFO: Skipping sitemap generation (www root does not even exists).2024-03-16 09:43:44,907 INFO: Skipping 404 page generation (www root does not even exists).2024-03-16 09:43:44,907 INFO: Skipping robots.txt generation (www root does not even exists).

This is because we have pinned the theme used in CPython 3.8 and 3.9 branches to 2023.3.1 tofixpython/cpython#115349 (PRpython/cpython#115351 andpython/cpython#115404).

Therefore we no longer need to test the latest version of this theme on the 3.8 and 3.8 branches.

Copy link
Contributor

@willingcwillingc left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Sounds good to me.

@willingcwillingc merged commita08b380 intopython:mainMar 16, 2024
@hugovkhugovk deleted the rm-3.8-3.9 branchMarch 16, 2024 17:52
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers

@willingcwillingcwillingc approved these changes

Assignees
No one assigned
Labels
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

Code snippets in dark theme are unreadable
2 participants
@hugovk@willingc

[8]ページ先頭

©2009-2025 Movatter.jp