Skip to content

Fix GA workflow#63

Merged
tekrajchhetri merged 5 commits into
sensein:mainfrom
djarecka:fix_gatest
Feb 11, 2026
Merged

Fix GA workflow#63
tekrajchhetri merged 5 commits into
sensein:mainfrom
djarecka:fix_gatest

Conversation

@djarecka

Copy link
Copy Markdown
Contributor

I've fixed the test workflow (it was giving an error during the installation) and I had to update poetry.lock

the pre-commit, the code has to be fixed in a different pr

@gemini-code-assist

Copy link
Copy Markdown
Contributor

Summary of Changes

Hello @djarecka, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request primarily focuses on stabilizing the GitHub Actions workflow by addressing installation errors. This was achieved through a comprehensive update and regeneration of the poetry.lock file, which involved bumping various package versions, adding new development tools, and refining Python version compatibility markers for several dependencies. The changes aim to ensure a smoother and more reliable continuous integration process.

Highlights

  • Dependency Updates: The poetry.lock file has been regenerated, leading to updates for several packages including click (8.1.8 to 8.3.1), pre-commit (3.8.0 to 4.5.1), pytest-cov (5.0.0 to 6.3.0), and pdoc (14.7.0 to 15.0.4). This also involved updating their respective Python version compatibility and hashes.
  • New Development Dependencies Added: New development dependencies codespell (2.4.1), execnet (2.1.2), psutil (7.2.2), and pytest-xdist (3.8.0) have been introduced, likely to enhance code quality checks, testing infrastructure, or performance monitoring.
  • Python Version Marker Refinements: Several packages (async-timeout, exceptiongroup, isodate, scipy, tomli) had their Python version markers adjusted from < "3.11" to == "3.10", indicating a more specific targeting of Python 3.10 for these dependencies.
  • Mypy Package Removal: The mypy package (version 1.15.0) has been entirely removed from the poetry.lock file, and mypy-extensions and typing-extensions had their group affiliations adjusted, suggesting a change in how type checking is managed or a temporary removal for compatibility.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Changelog
  • poetry.lock
    • Updated Poetry generation version from 2.1.1 to 2.3.2.
    • Adjusted async-timeout Python version marker to specifically target Python 3.10.
    • Updated furo version in docs extra.
    • Upgraded click from 8.1.8 to 8.3.1 and updated its minimum Python version to 3.10.
    • Added codespell (2.4.1) as a new development dependency.
    • Modified exceptiongroup Python version marker to specifically target Python 3.10.
    • Added execnet (2.1.2) as a new development dependency.
    • Updated protobuf version constraint from <6.0dev to <6.0.dev0.
    • Adjusted isodate Python version marker to specifically target Python 3.10.
    • Updated jsonschema-specifications version.
    • Updated certifi version.
    • Removed mypy package (1.15.0) entirely.
    • Changed mypy-extensions group from ['main', 'dev'] to ['main'].
    • Upgraded pdoc from 14.7.0 to 15.0.4, updated its minimum Python version to 3.9, and removed its dev extra.
    • Tightened MarkupSafe dependency constraint for pdoc.
    • Upgraded pre-commit from 3.8.0 to 4.5.1 and updated its minimum Python version to 3.10.
    • Added psutil (7.2.2) as a new development dependency.
    • Upgraded pytest-cov from 5.0.0 to 6.3.0, updated its minimum Python version to 3.9, and updated its coverage and pytest dependencies.
    • Added pluggy as a new dependency for pytest-cov.
    • Added pytest-xdist (3.8.0) as a new development dependency.
    • Adjusted scipy Python version marker to specifically target Python 3.10.
    • Adjusted tomli Python version marker to specifically target Python 3.10.
    • Changed typing-extensions group from ['main', 'dev'] to ['main'].
    • Updated the overall content-hash.
Ignored Files
  • Ignored by pattern: .github/workflows/** (1)
    • .github/workflows/test.yaml
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

@codecov-commenter

Copy link
Copy Markdown

Welcome to Codecov 🎉

Once you merge this PR into your default branch, you're all set! Codecov will compare coverage reports and display results in all future pull requests.

Thanks for integrating Codecov - We've got you covered ☂️

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Code Review

This pull request updates the poetry.lock file to fix an issue with the test workflow. While many dependencies are updated, I've identified a critical issue with the environment markers for isodate and scipy. They have been restricted to Python 3.10 only, which will likely cause installation failures and ModuleNotFoundError on other supported Python versions (3.11, 3.12). This seems to be a side-effect of generating the lock file in a Python 3.10 environment and needs to be addressed to ensure the project works correctly across all supported Python versions.

Comment thread poetry.lock
python-versions = ">=3.7"
groups = ["main"]
markers = "python_version < \"3.11\""
markers = "python_version == \"3.10\""

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

critical

The environment marker for isodate has been restricted to only Python 3.10. Since this project supports Python versions up to 3.12 (>=3.10,<3.13), and isodate is a dependency of rdflib, this change will likely cause ModuleNotFoundError when running on Python 3.11 or 3.12. This marker seems incorrect and should probably be removed or corrected to allow isodate to be installed on all supported Python versions. This issue might stem from generating the lock file on a specific Python version.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

this is incorrect, the installation works for python 3.11 and 3.12

Comment thread poetry.lock
python-versions = ">=3.10"
groups = ["main"]
markers = "python_version < \"3.11\""
markers = "python_version == \"3.10\""

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

critical

The environment marker for this scipy package definition has been restricted to only Python 3.10. scipy is a dependency for pandas and should be available for all supported Python versions of the project (>=3.10,<3.13). This marker will prevent its installation on Python 3.11 and 3.12, potentially causing runtime errors. This marker should be reviewed to ensure scipy is correctly resolved for all target Python versions. It's possible this was caused by generating the lock file in a Python 3.10-only environment.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

this is incorrect, the installation works for python 3.11 and 3.12

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Pull request overview

Updates CI to resolve a GitHub Actions test workflow install failure by adjusting how Poetry is installed/cached, and refreshes the dependency lockfile accordingly.

Changes:

  • Update the test workflow to install Poetry 2.3.2 and use actions/setup-python’s built-in Poetry caching.
  • Remove an invalid/incorrectly placed schedule trigger from the workflow.
  • Regenerate poetry.lock with Poetry 2.3.2 (resulting in dependency/version and metadata updates).

Reviewed changes

Copilot reviewed 1 out of 2 changed files in this pull request and generated 2 comments.

File Description
poetry.lock Regenerated lockfile using Poetry 2.3.2; updates resolved versions/markers and content hash.
.github/workflows/test.yaml Adjusts Poetry installation and caching strategy in CI; removes the prior schedule stanza.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread .github/workflows/test.yaml Outdated
Comment thread .github/workflows/test.yaml
@tekrajchhetri
tekrajchhetri merged commit 920510a into sensein:main Feb 11, 2026
3 of 4 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants