Skip to content
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

do a release #80

Open
deronnax opened this issue Mar 12, 2024 · 2 comments
Open

do a release #80

deronnax opened this issue Mar 12, 2024 · 2 comments
Assignees
Labels
enhancement Enhancement of the code, not introducing new features.

Comments

@deronnax
Copy link
Contributor

deronnax commented Mar 12, 2024

it's been 8,5 months since the last non-beta release. Also, none of the current release runs on python 3.12 because older dparse releases use ConfigParser.readfp() which is removed in Python 3.12.

@deronnax deronnax added the enhancement Enhancement of the code, not introducing new features. label Mar 12, 2024
@yeisonvargasf yeisonvargasf self-assigned this Mar 14, 2024
@pawamoy
Copy link
Contributor

pawamoy commented May 17, 2024

This forces users to enable pre-releases when resolving dependencies, for example:

  × No solution found when resolving dependencies:
  ╰─▶ Because only dparse<0.6.4b0 is available and safety>=3.0.0 depends on dparse>=0.6.4b0, we can conclude that safety>=3.0.0 cannot be used.
      And because only the following versions of safety are available:
          safety<=3.0.0
          safety==3.0.1
          safety==3.1.0
          safety==3.2.0
      and mkdocs-autorefs depends on safety>=3.0, we can conclude that the requirements are unsatisfiable.

      hint: dparse was requested with a pre-release marker (e.g., dparse>=0.6.4b0), but pre-releases weren't enabled (try: `--prerelease=allow`)

Opting into pre-releases would allow them in the whole dependency graph, not just for dparse, so that's not really something I'd want to do 🤔

Any blockers for going from a beta release to a final release 🙂?

@mahathun
Copy link

mahathun commented Aug 4, 2024

@pawamoy had the same issue, fixed it by adding the dparse pre release version to the dependancies. then you can do the rye sync without --pre

[tool.rye]
managed = true
dev-dependencies = [
     ...,
    "dparse>=0.6.4b0",
    "safety>=3.2.3"
]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement Enhancement of the code, not introducing new features.
Projects
None yet
Development

No branches or pull requests

4 participants