Skip to content
This repository was archived by the owner on Aug 11, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,16 @@ jobs:
pip install virtualenv
pip install nox
nox -f noxfile.py -s unit
Compatibility Test 3.11:
docker:
- image: cimg/python:3.11.0
steps:
- checkout
- run:
command: |
pip install virtualenv
pip install nox
nox -f noxfile.py -s compatibility
Compatibility Test 3.10:
docker:
- image: cimg/python:3.10.2
Expand Down Expand Up @@ -92,6 +102,7 @@ workflows:
- Lint
- Unit Test
- Type Check
- Compatibility Test 3.11
- Compatibility Test 3.10
- Compatibility Test 3.9
- Compatibility Test 3.8
Expand Down
2 changes: 1 addition & 1 deletion pybadges/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '3.0.0' # Also change in setup.py.
__version__ = '3.0.1' # Also change in setup.py.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def replace_relative_with_absolute(match):

setup(
name='pybadges',
version='3.0.0', # Also change in version.py.
version='3.0.1', # Also change in version.py.
author='Brian Quinlan',
author_email='[email protected]',
classifiers=[
Expand All @@ -53,6 +53,7 @@ def replace_relative_with_absolute(match):
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Operating System :: OS Independent',
],
description='A library and command-line tool for generating Github-style ' +
Expand Down