Skip to content

Commit

Permalink
swap deprecated Formatting.jl for newer Format.jl (#37)
Browse files Browse the repository at this point in the history
* swap deprecated Formatting.jl for newer Format.jl

* Drop Julia 1.0 Support -- Formatting.jl only supports 1.4 and up
---------

Co-authored-by: Jacob Adenbaum <[email protected]>
  • Loading branch information
magerton and jacobadenbaum authored Apr 19, 2024
1 parent f3eb5dc commit 80342bf
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.0'
- '1.4'
- '1'
os:
- ubuntu-latest
Expand Down
5 changes: 2 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
Formatting = "59287772-0a20-5a39-b81b-1366585eb4c0"
Format = "1fa38f19-a742-5d3f-a2b9-30dd87b9d5f8"
GLM = "38e38edf-8417-5370-95a0-9cbb8c7f171a"
Parameters = "d96e819e-fc66-5662-9728-84c9c7592b0a"
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
Expand All @@ -18,12 +18,11 @@ Compat = "3, 4"
DataFrames = "0.21, 0.22, 1.0"
DataStructures = "0.17, 0.18"
Distributions = "0.20, 0.21, 0.22, 0.23, 0.24, 0.25"
Formatting = "^0.3.3, 0.4"
GLM = "^1.0"
Parameters = "0.12"
StatsBase = "0.33, 0.34"
StatsModels = "0.6, 0.7"
julia = "1"
julia = "1.4"

[extras]
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
Expand Down
1 change: 1 addition & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ makedocs(
format = Documenter.HTML(
prettyurls = get(ENV, "CI", nothing) == "true"
),
warnonly = :missing_docs,
clean = false,
authors = "Jacob Adenbaum",
pages = [
Expand Down
2 changes: 1 addition & 1 deletion src/TexTables.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module TexTables
# package code goes here

# Nice string formattting
using Formatting, DataStructures, DataFrames
using Format, DataStructures, DataFrames

# Required for StatsModels Integration
using StatsBase
Expand Down

0 comments on commit 80342bf

Please sign in to comment.