Skip to content

Commit 9eede2a

Browse files
committed
[docs]: fixes
1 parent 9b3b73a commit 9eede2a

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
runs-on: ${{ matrix.os }}
5858
strategy:
5959
matrix:
60-
python-version: ['3.8', '3.10', '3.11']
60+
python-version: ['3.9', '3.10', '3.11']
6161
os: [ubuntu-latest, macos-latest, windows-latest]
6262

6363
steps:

advertion/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""The `version` module holds the version information for advertion."""
22

3-
__version__ = "1.0.0"
3+
__version__ = "1.0.1"

docs/api.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# API Reference
22

33
::: advertion.validate
4-
options:
5-
docstring_style: numpy
4+
rendering:
5+
show_root_heading: true

docs/changelog.md

+8
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
66
before v0.1.1, format was a bit freestyle*),
77
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

9+
## [1.0.1] - 2024-12-12
10+
11+
### Fixed
12+
13+
Minor issues related to docs and docs dependencies, in order for the https://advertion.readthedocs.io/en/latest/ to be built
14+
successfully.
15+
16+
917
## [1.0.0] - 2024-12-12
1018

1119
### Changed

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "advertion"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
description = "A tiny framework to perform adversarial validation of your training and test data."
55
authors = ["Ilias Antonopoulos <[email protected]>"]
66
license = "Apache License 2.0"
@@ -9,7 +9,7 @@ homepage = "https://pypi.org/project/advertion"
99
repository = "https://github.com/ilias-ant/adversarial-validation"
1010
keywords = ["adversarial-validation", "data-drift", "machine-learning"]
1111
classifiers = [
12-
"Development Status :: 4 - Beta",
12+
"Development Status :: 5 - Production/Stable",
1313
"Intended Audience :: Developers",
1414
"Intended Audience :: Education",
1515
"Intended Audience :: Information Technology",

0 commit comments

Comments
 (0)