Skip to content

Commit

Permalink
Move source to src/
Browse files Browse the repository at this point in the history
Resolves #109
  • Loading branch information
sgillies committed Dec 27, 2024
1 parent ab03421 commit 0e351f6
Show file tree
Hide file tree
Showing 10 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
CHANGES
=======

3.0a1 (2024-12-27)
------------------

- Source was moved to src/ and Python version support was changed to 3.9+ (#).

2.4.0 (2023-01-19)
------------------

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ classifiers = [
"Topic :: Scientific/Engineering :: GIS",
]
license = {text = "BSD-3-Clause"}
requires-python = ">=3.7"
requires-python = ">=3.9"

[project.optional-dependencies]
test = [
Expand Down
2 changes: 1 addition & 1 deletion affine/__init__.py → src/affine/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

__all__ = ["Affine"]
__author__ = "Sean Gillies"
__version__ = "2.4.1dev"
__version__ = "3.0dev"

EPSILON: float = 1e-5

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[tox]
envlist =
py37,py38,py39,py310,py311
py39,py310,py311,py312,py313

[testenv]
usedevelop = true
deps =
pytest-cov
responses
commands =
python -m pytest affine/tests --cov affine --cov-report term-missing
python -m pytest --cov affine --cov-report term-missing

0 comments on commit 0e351f6

Please # to comment.