Commit 86ee7d19 authored by Asitha Senanayake's avatar Asitha Senanayake
Browse files

Merge branch 'develop' into 'main'

Bump version to 0.6.0

Closes #105

See merge request ags-data-format-wg/ags-python-library!62
parents b007cb8f a4bee523
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ stages:
  stage: test
  parallel:
    matrix:
      - PYTHON_VERSION: ["3.8", "3.9", "3.10", "3.11", "3.12"]
      - PYTHON_VERSION: ["3.9", "3.10", "3.11", "3.12"]
  script:
    - python -m pip install .
    - python -m pip install pytest nbval
+9 −0
Original line number Diff line number Diff line
Changelog
=========

0.6.0 (Pending)
--------------
- Remove support for Python 3.8
- Require Pandas 2.1+
- Report exceptions in the error log using the description 'Validation Process
  Error'
- Update default sort strategy to 'dictionary'
- Remove debug print statements to stdout

0.5.0 (2024-01-27)
------------------

+133 −162

File changed.

Preview size limit exceeded, changes collapsed.

+8 −7
Original line number Diff line number Diff line
[tool.poetry]
name = "python-AGS4"
version = "0.5.0"
version = "0.6.0"
description = "A library to read, write, and check AGS4 files using Pandas DataFrames"
authors = ["Asitha Senanayake <asitha_sena@yahoo.com>"]
license = "LGPL-3.0"
@@ -10,20 +10,21 @@ repository = "https://gitlab.com/ags-data-format-wg/ags-python-library"
include = ["COPYING.LESSER"]

[tool.poetry.dependencies]
python = "^3.8"
pandas = "^2.0"
python = "^3.9"
pandas = "^2.1"
openpyxl = "^3.0"
defusedxml = ">=0.6, <0.8"
click = ">=7.0, <9.0"
rich = ">=9.0, <14.0"

[tool.poetry.dev-dependencies]
pytest = "^7.3"
toml = "^0.10"

[tool.poetry.scripts]
ags4_cli = "python_ags4.ags4_cli:main"

[tool.poetry.group.dev.dependencies]
pytest = "^7.3"
toml = "^0.10"
isort = "^5.13.2"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
+39 −78

File changed.

Preview size limit exceeded, changes collapsed.

Loading