# test/Project.toml versioning issues

**URL:** https://discourse.julialang.org/t/test-project-toml-versioning-issues/63415
**Category:** Package Management
**Created:** [June 23, 2021, 4:56am UTC](https://discourse.julialang.org/t/test-project-toml-versioning-issues/63415 "2021-06-23T04:56:39Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![jlchan](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/jlchan/32/10958_2.png) [@jlchan](https://discourse.julialang.org/u/jlchan)
#### Post date: [June 23, 2021, 4:56am UTC](https://discourse.julialang.org/t/test-project-toml-versioning-issues/63415/1 "2021-06-23T04:56:40Z")

</div>

I’ve added a test/Project.toml which includes `PackageName#master`. However, Github CI seems to be ignoring the `#master` branch and just loading the last tagged version of the package.

Is this a known issue, and if so is there a fix?

---

<div class="post-metadata">

### Author: ![jishnub](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/jishnub/32/33620_2.png) [@jishnub](https://discourse.julialang.org/u/jishnub)
#### Post date: [June 23, 2021, 5:33am UTC](https://discourse.julialang.org/t/test-project-toml-versioning-issues/63415/2 "2021-06-23T05:33:18Z")

</div>

Have you checked in the `test/Manifest.toml`? The `Project.toml` only includes the names of the dependencies, so if you only have that you’ll fetch the registered versions available in the registry. To fetch the master branch by url you’ll need the manifest

---

<div class="post-metadata">

### Author: ![jlchan](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/jlchan/32/10958_2.png) [@jlchan](https://discourse.julialang.org/u/jlchan)
#### Post date: [June 23, 2021, 11:18am UTC](https://discourse.julialang.org/t/test-project-toml-versioning-issues/63415/3 "2021-06-23T11:18:18Z")

</div>

I think that’s probably it. I always forget about needing the Manifest too for extra package info.

Thanks!
