Skip to content

Commit

Permalink
Refresh for Julia 1.0+ (#25)
Browse files Browse the repository at this point in the history
* Switch to Project.toml
  • Loading branch information
randyzwitch authored Oct 4, 2019
1 parent c6a1b39 commit ab16704
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 57 deletions.
15 changes: 9 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,21 @@
## Documentation: http://docs.travis-ci.com/user/languages/julia/
sudo: required
language: julia
os:
- linux
- linux
julia:
- 0.7
- 1.0
- nightly
- 1.0
- 1.1
- 1.2
- 1.3
- nightly
matrix:
allow_failures:
- julia: nightly
notifications:
email: false
after_success:
- julia -e 'using Pkg;cd(Pkg.dir("Twitter")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder());
Codecov.submit(process_folder())'
- julia -e 'using Pkg; cd(Pkg.dir("Twitter")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
env:
global:
- secure: C4k0b/3yhISWDPl5BuYg8oo4GNeeO/cvhnpe2ESLD7rek1eSgeYmbLz6D6HRu5V6lQjjoUEGpnMid5Drx51jsumov11Br2XiQf7JmUc9Bks0gXcUA7b7HGaZCaG3bUChrL7B/75CU2FCj+7gmZXNJtMTOqYdabsijICOqzqxptY=
Expand Down
20 changes: 20 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name = "Twitter"
uuid = "92393bbf-ba23-5323-a3fa-fbe1e5f35af8"
version = "0.6.0"

[deps]
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
OAuth = "22d8b318-f366-56fb-a292-a93f7d76c017"

[compat]
DataFrames = "~0.18.0"
JSON = "~0.21.0"
OAuth = "~0.7.1"
julia = "^1.0"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

Linux: [![Build Status](https://travis-ci.org/randyzwitch/Twitter.jl.png)](https://travis-ci.org/randyzwitch/Twitter.jl)
<br>
Windows: [![Build status](https://ci.appveyor.com/api/projects/status/09qykgs7l2fakcvh?svg=true)](https://ci.appveyor.com/project/randyzwitch/twitter-jl) <br>
CodeCov: [![codecov](https://codecov.io/gh/randyzwitch/Twitter.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/randyzwitch/Twitter.jl)

Twitter.jl is a Julia package to work with the Twitter API v1.1. Currently, only the REST API methods are supported; streaming API endpoints aren't implemented at this time.
Expand Down
4 changes: 0 additions & 4 deletions REQUIRE

This file was deleted.

46 changes: 0 additions & 46 deletions appveyor.yml

This file was deleted.

3 comments on commit ab16704

@randyzwitch
Copy link
Owner Author

Choose a reason for hiding this comment

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

@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/4119

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>" ab16704392ad811db1c05084ed470c88828404a7
git push origin v0.6.0

@randyzwitch
Copy link
Owner Author

Choose a reason for hiding this comment

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

@Alexander-Barth Cleaned up the package for Julia 1.0 and it passes the minimal tests I have, but if you run into more issues with version 0.6.0, please let me know

Please sign in to comment.