diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4065b54..6d88129 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -9,6 +9,9 @@ and this project adheres to `Semantic Versioning `_: Add support for different FAT12 cluster sizes for filesystems up to 256MB by `@zurcher `_ / `@Microsoft `_ @@ -37,7 +40,7 @@ Changed Removed ~~~~~~~ -* `PR #36 `_: Drop Python 3.7 support by `@zurcher `_ / `@Microsoft `_ +* `PR #36 `_: Drop Python 3.6 & 3.7 support by `@zurcher `_ / `@Microsoft `_ 1.0.5_ - 2022-04-16 ------------------- @@ -203,7 +206,8 @@ Fixed * `PR #2 `_: Fix DOS time conversion by `@koolkdev `_ * `PR #3 `_: Fix reading from a file and implement arbitrary write by `@koolkdev `_ -.. _Unreleased: https://github.com/nathanhi/pyfatfs/compare/v1.0.5...HEAD +.. _Unreleased: https://github.com/nathanhi/pyfatfs/compare/v1.1.0...HEAD +.. _1.1.0: https://github.com/nathanhi/pyfatfs/compare/v1.0.5...v1.1.0 .. _1.0.5: https://github.com/nathanhi/pyfatfs/compare/v1.0.4...v1.0.5 .. _1.0.4: https://github.com/nathanhi/pyfatfs/compare/v1.0.3...v1.0.4 .. _1.0.3: https://github.com/nathanhi/pyfatfs/compare/v1.0.2...v1.0.3 diff --git a/Makefile b/Makefile index c331f20..6428bbc 100644 --- a/Makefile +++ b/Makefile @@ -58,7 +58,7 @@ build: venv .PHONY: twine_upload twine_upload: clean build python3 -m venv $(VENV_DIR)/twine_venv - $(VENV_DIR)/twine_venv/$(VENV_BIN_DIR)/python3 -m pip install twine==4.0.2 + $(VENV_DIR)/twine_venv/$(VENV_BIN_DIR)/python3 -m pip install twine==5.0.0 $(VENV_DIR)/twine_venv/$(VENV_BIN_DIR)/twine upload dist/* .PHONY: coveralls_parallel diff --git a/pyproject.toml b/pyproject.toml index 2a88620..9649c10 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" name = "pyfatfs" description = "FAT12/FAT16/FAT32 implementation with VFAT support" readme = "README.rst" -requires-python = "~=3.6" +requires-python = "~=3.8" dependencies = ["fs~=2.4"] keywords = ["filesystem", "PyFilesystem2", "FAT12", "FAT16", "FAT32", "VFAT", "LFN"] license = {file = "LICENSE"}