Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v3.0.1 #28

Merged
merged 1 commit into from
May 21, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ['3.10', '3.11']
python-version: ['3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v2
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.0.1] - 2024-05-21
### Added
- Support for python 3.12

### Fixed
- Dependencies update

## [3.0.0] - 2024-03-19
### Added
- Support for `oAuth2`: `access_token` parameter in `Api` class constructor.
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
requests==2.31.0
requests==2.32.1
7 changes: 4 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ classifiers =
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12

[options]
packages = find:
Expand All @@ -34,9 +35,9 @@ where = src

[options.extras_require]
testing =
tox >= 4.4.0
responses >= 0.22.0
coverage >= 7.2.0
tox >= 4.15.0
responses >= 0.25.0
coverage >= 7.5.0
coverage-badge >= 1.1.0

[options.package_data]
Expand Down
2 changes: 1 addition & 1 deletion src/osm_easy_api/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Python package for parsing osm diffs and communicating with the OpenStreetMap api."""
VERSION = "3.0.0"
VERSION = "3.0.1"

from . import data_classes
from . import diff
Expand Down
6 changes: 3 additions & 3 deletions test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
responses == 0.25.0
tox == 4.14.1
coverage == 7.4.3
coverage-badge == 1.1.0
tox == 4.15.0
coverage == 7.5.1
coverage-badge == 1.1.1
7 changes: 4 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
[tox]
minversion = 4.4.0
envlist = py311, py310
envlist = py312, py311, py310
isolated_build = true

[gh-actions]
python =
3.11: py311, coverage
3.12: py312, coverage
3.11: py311
3.10: py310

[testenv]
Expand All @@ -15,7 +16,7 @@ commands = python -m unittest discover

[testenv:coverage]
usedevelop = true
basepython = python3.11
basepython = python3.12
deps = -r{toxinidir}/test-requirements.txt
commands =
coverage run -m unittest discover
Expand Down
Loading