Skip to content

Commit

Permalink
Merge pull request #13 from mik3y/mikey/bump-deps
Browse files Browse the repository at this point in the history
Drop python 3.9 support, bump dependencies
  • Loading branch information
mik3y authored Aug 10, 2024
2 parents 6a0432f + b3dcb75 commit fc008fd
Show file tree
Hide file tree
Showing 7 changed files with 66 additions and 70 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ jobs:
max-parallel: 4
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
Expand Down Expand Up @@ -66,7 +65,6 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
Expand Down Expand Up @@ -119,7 +117,6 @@ jobs:
- "django32"
- "django42"
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Current version (in development)

* Internal: Switch Python code formatter/linter to [ruff](https://docs.astral.sh/ruff/).
* Internal: Drop support for Python 3.9.

## v1.0.0 (2023-12-25)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ For a more detailed look at this pattern, see Stripe's ["Object IDs: Designing A

This package supports and is tested against the latest patch versions of:

- **Python:** 3.9, 3.10, 3.11, 3.12
- **Python:** 3.10, 3.11, 3.12
- **Django:** 3.2, 4.2
- **MySQL:** 5.7, 8.0
- **PostgreSQL:** 9.5, 10, 11, 12
Expand Down
110 changes: 55 additions & 55 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ authors = ["mike wakerly <[email protected]>"]
license = "MIT"

[tool.poetry.dependencies]
python = "^3.9.0"
python = "^3.10.0"

[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
tox = "^4.6.3"
setuptools = "^65.7.0"
pytest-django = "^4.5.2"
sphinx = "^6.1.3"
twine = "^4.0.2"
pytest = "^8.3.2"
tox = "^4.17.1"
setuptools = "^72.1.0"
pytest-django = "^4.8.0"
sphinx = "^8.0.2"
twine = "^5.1.1"
ruff = "^0.5.7"

[build-system]
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ classifiers =
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Expand All @@ -34,7 +33,7 @@ packages = find:
package_dir = =src
install_requires =
Django>=2.2
python_requires = >=3.9.0
python_requires = >=3.10.0

[options.packages.find]
where = src
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
[tox]
isolated_build = true
envlist =
py{39,310,311,312}-django{22,31,41}-{mysql,postgres,sqlite}, dist
py{310,311,312}-django{22,31,41}-{mysql,postgres,sqlite}, dist

[gh-actions]
python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312
Expand Down

0 comments on commit fc008fd

Please sign in to comment.