Skip to content

Commit

Permalink
updating dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bertt committed Jun 28, 2024
1 parent f676260 commit a901233
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ parquetFileWriter.Close();

## Dependencies

- ParquetSharp 13 https://github.com/G-Research/ParquetSharp
- ParquetSharp 15 https://github.com/G-Research/ParquetSharp

## Schema generation

Expand Down
2 changes: 1 addition & 1 deletion geoarrow/geoarrow.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<ItemGroup>
<PackageReference Include="NetTopologySuite.Features" Version="2.1.0" />
<PackageReference Include="ParquetSharp" Version="13.0.0-beta1" />
<PackageReference Include="ParquetSharp" Version="15.0.2.1" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion geoparquet.codegen/geoparquet.codegen.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NJsonSchema.CodeGeneration.CSharp" Version="10.9.0" />
<PackageReference Include="NJsonSchema.CodeGeneration.CSharp" Version="11.0.1" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion geoparquet.tests/UnitTest1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public void ReadGeoParquetWkbFile()

var rowGroupReader = file1.RowGroup(0);
var gemName = rowGroupReader.Column(3).LogicalReader<String>().First();
Assert.IsTrue(gemName == "Appingedam");
Assert.That(gemName == "Appingedam");

var geomColumnId = GetColumnId(rowGroupReader, geoParquet.Primary_column);

Expand Down
10 changes: 5 additions & 5 deletions geoparquet.tests/geoparquet.tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Apache.Arrow" Version="14.0.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="Apache.Arrow" Version="16.1.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="NetTopologySuite" Version="2.5.0" />
<PackageReference Include="NUnit" Version="3.14.0" />
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageReference Include="NUnit.Analyzers" Version="3.9.0">
<PackageReference Include="NUnit.Analyzers" Version="4.2.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="6.0.0">
<PackageReference Include="coverlet.collector" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion src/geoparquet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="ParquetSharp" Version="13.0.0-beta1" />
<PackageReference Include="ParquetSharp" Version="15.0.2.1" />
</ItemGroup>

</Project>

0 comments on commit a901233

Please sign in to comment.