I have created a Julia package, that I am trying to register at the General registry.
However, the pull request tests failed (twice now). This is the concerned AutoMerge test.
The error output is
ERROR: Unsatisfiable requirements detected for package TimetableSolver [df459030]:
TimetableSolver [df459030] log:
├─possible versions are: 0.1.0 or uninstalled
├─restricted to versions 0.1.0 by an explicit requirement, leaving only versions 0.1.0
└─restricted by julia compatibility requirements to versions: uninstalled — no versions left
And then, import <PackageName>
also failed but I believe it may ultimately be because of this error.
This is my package on github: TimetableSolver.jl. In the Project.toml
and using git tag
I have listed version v0.1.0
for the package, and fixed all dependencies and compat to upper bounded.
My package is limited to julia = "~1.6" # [1.6.0, 1.7.0)
, because the last time I tested with 1.7 (latest) my code failed. Do I need to update Project.toml
to work with 1.7 and test my code accordingly?