Skip to content

Commit

Permalink
Fixed dependencies, documentation and updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
COUR4G3 committed Apr 6, 2023
1 parent 6fd4192 commit 20637e9
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ko_fi: cour4g3
4 changes: 4 additions & 0 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

version: 2

build:
os: ubuntu-22.04
tools:
python: "3.10"
sphinx:
configuration: docs/conf.py
fail_on_warning: true
Expand Down
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changes

## Version 0.1.1

Release 2023-04-06

* Fixed missing ``jwt`` and ``requests`` dependencies.


## Version 0.1.0

Released 2023-04-06
Expand Down
9 changes: 4 additions & 5 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,9 @@
import os
import sys

sys.path.insert(0, os.path.abspath(".."))

from importlib.metadata import version as get_version

from flask_cfaccess import __version__
sys.path.insert(0, os.path.abspath(".."))

# -- Project information -----------------------------------------------------

Expand All @@ -28,7 +27,7 @@
author = "Michael de Villiers"

# The full version, including alpha/beta/rc tags
release = "0.1-dev0"
release = get_version("flask_cfaccess")


# -- General configuration ---------------------------------------------------
Expand Down Expand Up @@ -65,7 +64,7 @@
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ["_static"]
# html_static_path = ["_static"]


autodoc_typehints = "description"
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ dynamic = ["version"]
requires-python = ">= 3.8"
dependencies = [
"flask ~= 2.2.3",
"pyjwt ~= 2.6.0",
"requests ~= 2.28.2",
]

[project.urls]
Expand Down

0 comments on commit 20637e9

Please sign in to comment.