Skip to content

Commit

Permalink
Merge pull request #21 from BBN-Q/project.toml
Browse files Browse the repository at this point in the history
REQUIRE -> Project.toml and roll everything to Julia 1.0 only
  • Loading branch information
caryan authored Sep 5, 2019
2 parents 246f667 + 5f8a051 commit 621efc7
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 12 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
language: julia
julia:
- 0.7
- 1.0
- 1.1
- 1.2
- nightly
matrix:
allow_failures:
Expand Down
18 changes: 18 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name = "Cliffords"
uuid = "276b0191-6968-5de0-98fd-2a81b0f3910d"
authors = ["Marcus P da Silva", "Blake Johnson", "Matthew Ware", "Guilhem Ribeill"]
version = "0.6.0"

[deps]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"

[compat]
julia = "1"

[extras]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["LinearAlgebra", "Test"]
9 changes: 0 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,3 @@ H * Z => X
CNOT21 = expand(CNOT, [2,1], 2)
CNOT * CNOT21 * CNOT == SWAP => true
```

## Installation
For Julia v0.6 run:

```julia> Pkg.add("Cliffords")```

For v0.7 and above, run the following in the package manager to grab the master branch:

```(v1.1) pkg> add Cliffords#master```
2 changes: 0 additions & 2 deletions REQUIRE

This file was deleted.

3 comments on commit 621efc7

@caryan
Copy link
Collaborator Author

@caryan caryan commented on 621efc7 Sep 5, 2019

Choose a reason for hiding this comment

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

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

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

Registration pull request created: JuliaRegistries/General/3310

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.6.0 -m "<description of version>" 621efc7b4462f5d47ca5a80fc539be584218cd42
git push origin v0.6.0

@matthewware
Copy link
Collaborator

Choose a reason for hiding this comment

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

Went ahead and installed TagBot on the four Registered repos.

Please sign in to comment.