Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.8", "3.11" ]
python-version: [ "3.8", "3.12" ]
steps:
- uses: actions/checkout@v4
- name: Set up Java 17
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest ]
python-version: [ "3.8", "3.11" ]
python-version: [ "3.8", "3.12" ]
steps:
- uses: actions/checkout@v4
- name: Set up Java 17
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# pybacting

[![Tests](https://github.com/cthoyt/pybacting/actions/workflows/tests.yml/badge.svg)](https://github.com/cthoyt/pybacting/actions/workflows/tests.yml)
[![Tests](https://github.com/BlueObelisk/pybacting/actions/workflows/tests.yml/badge.svg)](https://github.com/BlueObelisk/pybacting/actions/workflows/tests.yml)
[![PyPI](https://img.shields.io/pypi/v/pybacting)](https://pypi.org/project/pybacting/)
![PyPI - License](https://img.shields.io/pypi/l/pybacting)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pybacting)
Expand Down Expand Up @@ -41,13 +41,13 @@ $ pip install pybacting
Install the latest code from GitHub:

```shell
$ pip install git+https://github.com/cthoyt/pybacting
$ pip install git+https://github.com/BlueObelisk/pybacting
```

Download and install from source in development mode:

```shell
$ git clone https://github.com/cthoyt/pybacting
$ git clone https://github.com/BlueObelisk/pybacting
$ cd pybacting
$ pip install --editable .
```
2 changes: 1 addition & 1 deletion src/pybacting/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
]

WORKSPACE = "."
VERSION = "1.0.5"
VERSION = "1.0.7"

# The ones marked with "no" can't be loaded because they are POM-only
# artifacts. See the excellent explanation given by @ctrueden why at:
Expand Down