File tree Expand file tree Collapse file tree 3 files changed +15
-9
lines changed Expand file tree Collapse file tree 3 files changed +15
-9
lines changed Original file line number Diff line number Diff line change @@ -85,12 +85,12 @@ jobs:
8585 uses : actions/setup-python@v4
8686 with :
8787 python-version : 3.8
88- - name : Build package
88+ - name : install flit
8989 run : |
90- pip install wheel
91- python setup.py sdist bdist_wheel
92- - name : Publish
93- uses : pypa/gh-action-pypi- publish@v1.8.10
94- with :
95- user : __token__
96- password : ${{ secrets.PYPI_KEY }}
90+ pip install flit~=3.4
91+ - name : Build and publish
92+ run : |
93+ flit publish
94+ env :
95+ FLIT_USERNAME : __token__
96+ FLIT_PASSWORD : ${{ secrets.PYPI_KEY }}
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## v0.2.0 (November 2023)
4+
5+ * π FIX: Skip non-columns by @rclaasen in https://github.com/chrisjsewell/sphinx-sqlalchemy/pull/2
6+ * β¬οΈ Update sphinx version to 5,6,7 by @chrisjsewell in https://github.com/chrisjsewell/sphinx-sqlalchemy/pull/6
7+ * β¬οΈ Update sqlachemy version to 2 by @chrisjsewell in https://github.com/chrisjsewell/sphinx-sqlalchemy/pull/12
8+
39## v0.1.1 (November 2021)
410
511β¨ NEW: Nested parse class docstrings
Original file line number Diff line number Diff line change 11"""Sphinx extension for documenting SQLAlchemy ORMs"""
22from typing import TYPE_CHECKING
33
4- __version__ = "0.1.1 "
4+ __version__ = "0.2.0 "
55
66if TYPE_CHECKING :
77 from sphinx .application import Sphinx
You canβt perform that action at this time.
0 commit comments