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
86 changes: 9 additions & 77 deletions .github/workflows/autotester.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- '3.10' # [LTS] Maintained until: October 2026
- '3.11' # [LTS] Maintained until: October 2027
- '3.12' # [LTS] Maintained until: October 2028
- '3.13' # [LTS] Maintained until: October 2029 AA does not yet support Python 3.13
- '3.13' # [LTS] Maintained until: October 2029
# MySQL versions to test against
database:
# https://endoflife.date/mysql
Expand All @@ -62,7 +62,7 @@ jobs:
- mariadb:10.11 # [LTS] Maintained until: February 2028
- mariadb:11.4 # [LTS] Maintained until: May 2029

continue-on-error: ${{ matrix.python-version == '3.13' }}
# continue-on-error: ${{ matrix.python-version == '3.13' }}

# Set up services
services:
Expand Down Expand Up @@ -96,6 +96,12 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

# AAv5 development branch requires libbz2-dev for some reason, so we need to install it before running Tox
- name: Install libbz2-dev
run: |
sudo apt-get update
sudo apt-get install -y libbz2-dev

# Install Tox and any other packages
- name: Install Tox and any other packages
run: |
Expand Down Expand Up @@ -128,78 +134,4 @@ jobs:
files: coverage.xml
verbose: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

# Run Test Coverage AA 5 Development
test-coverage-development:
needs: [pre-commit]
name: AA Development (Python ${{ matrix.python-version }} with ${{ matrix.database }})
runs-on: ubuntu-latest

strategy:
# Set Python versions to test against
matrix:
python-version:
- '3.10' # [LTS] Maintained until: October 2026
- '3.11' # [LTS] Maintained until: October 2027
- '3.12' # [LTS] Maintained until: October 2028
- '3.13' # [LTS] Maintained until: October 2029 AA does not yet support Python 3.13
# MySQL versions to test against
database:
# https://endoflife.date/mysql
- mysql:8.4 # [LTS] Maintained until: April 2032
# https://endoflife.date/mariadb and https://mariadb.com/kb/en/mariadb-server-release-dates/
- mariadb:10.11 # [LTS] Maintained until: February 2028
- mariadb:11.4 # [LTS] Maintained until: May 2029

# continue-on-error: ${{ matrix.python-version == '3.13' }}

# Set up services
services:
database:
image: ${{ matrix.database }}
env:
MYSQL_ROOT_PASSWORD: temp_password_aa_tox_tests
MYSQL_DATABASE: temp_allianceauth
ports:
- 3306:3306
options: --tmpfs /var/lib/mysql

steps:
# Checkout the repository
- name: Checkout
uses: actions/checkout@v6

- name: Install Redis
uses: shogo82148/actions-setup-redis@v1
with:
redis-version: 'latest'

- name: Verify Redis is running
run: |
redis-cli ping
redis-cli info

# Set up Python
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

# AAv5 development branch requires libbz2-dev for some reason, so we need to install it before running Tox
- name: Install libbz2-dev
run: |
sudo apt-get update
sudo apt-get install -y libbz2-dev

# Install Tox and any other packages
- name: Install Tox and any other packages
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade tox tox-gh-actions

# Run Tox with the specified environment
- name: Run Tox
env:
TOX_ENV: allianceauth-development
run: tox -v -e ${{ env.TOX_ENV }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,21 @@ Section Order:
### Removed
-->

## [4.0.0] - 2026-05-09

> [!IMPORTANT]
>
> This Release needs at least Alliance Auth v5
> Please make sure to update your Alliance Auth before you install this APP

### Added

- Compatibility to Alliance Auth v5

### Removed

- Compatibility to Alliance Auth v4

## [3.0.4] - 2026-05-03

### Added
Expand Down Expand Up @@ -885,5 +900,6 @@ python manage.py taxsystem_migrate_payments
[3.0.2]: https://github.com/Geuthur/aa-taxsystem/compare/v3.0.1...v3.0.2 "3.0.2"
[3.0.3]: https://github.com/Geuthur/aa-taxsystem/compare/v3.0.2...v3.0.3 "3.0.3"
[3.0.4]: https://github.com/Geuthur/aa-taxsystem/compare/v3.0.3...v3.0.4 "3.0.4"
[in development]: https://github.com/Geuthur/aa-taxsystem/compare/v3.0.4...HEAD "In Development"
[4.0.0]: https://github.com/Geuthur/aa-taxsystem/compare/v3.0.4...v4.0.0 "4.0.0"
[in development]: https://github.com/Geuthur/aa-taxsystem/compare/v4.0.0...HEAD "In Development"
[report any issues]: https://github.com/Geuthur/aa-taxsystem/issues "report any issues"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ ______________________________________________________________________
## Installation<a name="installation"></a>

> [!NOTE]
> AA Tax System needs at least Alliance Auth v4.13.0
> AA Tax System needs at least Alliance Auth v5
> Please make sure to update your Alliance Auth before you install this APP

### Step 1 - Install the Package<a name="step1"></a>
Expand Down
12 changes: 2 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,10 @@ dynamic = [
"version",
]
dependencies = [
"allianceauth>=4.12",
"django-esi>=8",
"allianceauth>=5",
"django-esi>=9",
"django-ninja>=1.5,<2",
]
optional-dependencies.tests-allianceauth-development = [
"aa-discordnotify",
"allianceauth==5.0.0b2",
"allianceauth-discordbot",
"coverage",
"discordproxy",
"factory-boy",
]
optional-dependencies.tests-allianceauth-latest = [
"aa-discordnotify",
"allianceauth-discordbot",
Expand Down
Loading
Loading