Skip to content

Commit

Permalink
bump version to 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mscarey committed Jul 16, 2022
1 parent beedc34 commit 3f9a50e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: |
pytest tests/ --record-mode=none --cov=authorityspoke --cov-report=term-missing
- name: Upload coverage data to coveralls.io
if: matrix.python-version == 3.9
if: matrix.python-version == "3.10"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: coveralls
2 changes: 1 addition & 1 deletion authorityspoke/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
from .opinions import OpinionReading
from .rules import Rule

__version__ = "0.9.0"
__version__ = "0.9.1"
5 changes: 5 additions & 0 deletions changelog.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
Changelog
=========
0.9.1 (2022-07-15)
------------------
* update eyecite and lxml dependencies to avoid Python 3.10 build error
* add 3.10 to supported Python versions

0.9.0 (2021-10-27)
------------------
* replace marshmallow serializers with pydantic
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
# -- Project information -----------------------------------------------------

project = "AuthoritySpoke"
copyright = "2019-2021, Matthew Carey"
copyright = "2019-2022, Matthew Carey"
author = "Matthew Carey"

# The full version, including alpha/beta/rc tags
release = "0.9.0"
release = "0.9.1"


# -- General configuration ---------------------------------------------------
Expand Down
6 changes: 0 additions & 6 deletions docs/guides/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,6 @@ And then install the package.
$ pip install AuthoritySpoke
.. warning::
AuthoritySpoke may fail to install on Python version 3.10, especially on
MacOS. For now, the only work-around is to use Python version 3.9 or 3.8
instead. A `GitHub issue thread <https://github.com/mscarey/AuthoritySpoke/issues/111>`__
is available to track progress on diagnosing this problem.

When you're done using your virtual environment, you can deactivate it with:

.. code-block:: console
Expand Down

0 comments on commit 3f9a50e

Please sign in to comment.