Skip to content

Commit

Permalink
Merge pull request #8 from nezhar/master
Browse files Browse the repository at this point in the history
Adds compatibility for django 3.2
  • Loading branch information
nezhar authored Jun 6, 2021
2 parents 86539f5 + eaf7465 commit 9335bb4
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 17 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.5', '3.6', '3.7', '3.8']
django-version: ['2.2', '3.0', '3.1']
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9']
django-version: ['2.2', '3.1', '3.2']
exclude:
- python-version: '3.5'
django-version: '3.0'
- python-version: '3.5'
django-version: '3.1'
- python-version: '3.5'
django-version: '3.2'

steps:
- uses: actions/checkout@v2
Expand Down
24 changes: 15 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,39 +7,45 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [1.3.0 - Unreleased]
### Added
- Created CHANGELOG
- Compatibility matrix
- Support for Python 3.9
- Support for Django 3.2

### Changed
- Enhanced README with GitHub shields (badges)

### Removed
- Support for Django 3.0

## [1.2.0]
### Added
- New setting: ANX_MONITORING_TEST_QUERY_USERS (Default: True)
- New setting: ANX_MONITORING_TEST_DB_CONNECTIONS (Default: True)
- Added support for Python 3.7
- Added support for Python 3.8
- Added test project
- Added GitHub workflow action to run tests
- Support for Python 3.7
- Support for Python 3.8
- Test project
- GitHub workflow action to run tests

### Changed
- Pinned dependency `updatable` to a version >= 0.4.1 and < 0.5
- Converted README from RST to MD

### Fixed
- Fixed README file name in setup
- README file name in setup

### Removed
- Dropped support for Python 3.4
- Support for Python 3.4

## [1.1.1]
### Changed
- Pinned dependency `updatable` to a version >= 0.3 and < 0.4

### Removed
- Dropped support for Python 2.6
- Dropped support for Python 3.3
- Support for Python 2.6
- Support for Python 3.3

### Fixed
- Fixed removing previous builds in setup
- Removing previous builds in setup

## [1.1.0]
### Added
Expand Down
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@ A Django app used to monitor updates for Django and all installed python
packages in the running environment. It can be also used to check if the
website is alive and working correctly.

Django Compatibility Matrix
---------------------------

If your project uses an older verison of Django, you can choose an older version of this project.

| This Project | Python Version | Django Version |
|--------------|----------------|----------------|
| 1.3.* | 3.5 - 3.9 | 2.2, 3.1, 3.2 |
| 1.2.* | 3.5 - 3.8 | 2.2, 3.0, 3.1 |
| 1.1.* | 2.7, 3.4, 3.5 | 1.8, 1.11 |

Installation and configuration
------------------------------

Expand Down
6 changes: 0 additions & 6 deletions anexia_monitoring/apps.py

This file was deleted.

0 comments on commit 9335bb4

Please sign in to comment.