Skip to content

Commit 21ebfad

Browse files
committed
Package for Python 3.9
1 parent 5f35bb7 commit 21ebfad

File tree

7 files changed

+16
-3542
lines changed

7 files changed

+16
-3542
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [2.3.2] - 2020-10-03
7+
## [2.4.0] - Unreleased
8+
9+
### Added
10+
- Support for Python 3.9, including:
11+
- PEP 614 - Relaxing Grammar Restrictions On Decorators
12+
13+
## [2.3.2] - 2020-10-11
814

915
### Fixed
1016
- await keyword can now be used in f-string expression parts
@@ -91,6 +97,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9197
- python-minifier package
9298
- pyminify command
9399

100+
[2.3.2]: https://github.com/dflook/python-minifier/compare/2.3.2...2.4.0
94101
[2.3.2]: https://github.com/dflook/python-minifier/compare/2.3.1...2.3.2
95102
[2.3.1]: https://github.com/dflook/python-minifier/compare/2.3.0...2.3.1
96103
[2.3.0]: https://github.com/dflook/python-minifier/compare/2.2.1...2.3.0

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 Daniel Flook
3+
Copyright (c) 2020 Daniel Flook
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Transforms Python source code into it's most compact representation.
44

55
[Try it out!](https://python-minifier.com)
66

7-
python-minifier supports Python 2.6 to 2.7 and Python 3.3 to 3.8.
7+
python-minifier supports Python 2.6 to 2.7 and Python 3.3 to 3.9.
88

99
* [PyPi](https://pypi.org/project/python-minifier/)
1010
* [Documentation](https://dflook.github.io/python-minifier/)
@@ -107,7 +107,7 @@ $ pip install python-minifier
107107
Note that python-minifier depends on the python interpreter for parsing source code,
108108
so install using a version of python appropriate for your source.
109109

110-
python-minifier runs with and can minify code written for Python 2.6 to 2.7 and Python 3.3 to 3.8.
110+
python-minifier runs with and can minify code written for Python 2.6 to 2.7 and Python 3.3 to 3.9.
111111

112112
## Usage
113113

@@ -132,4 +132,4 @@ Documentation is available at [dflook.github.io/python-minifier/](https://dflook
132132

133133
Available under the MIT License. Full text is in the [LICENSE](LICENSE) file.
134134

135-
Copyright (c) 2018 Daniel Flook
135+
Copyright (c) 2020 Daniel Flook

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# -- Project information -----------------------------------------------------
2121

2222
project = 'Python Minifier'
23-
copyright = '2018, Daniel Flook'
23+
copyright = '2020, Daniel Flook'
2424
author = 'Daniel Flook'
2525

2626
from pkg_resources import get_distribution, DistributionNotFound

docs/source/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ To install python-minifier use pip:
99
1010
Note that python-minifier depends on the python interpreter for parsing source code, so install using a version of python appropriate for your source.
1111

12-
python-minifier runs with and can minify code written for Python 2.6 to 2.7 and Python 3.3 to 3.8.
12+
python-minifier runs with and can minify code written for Python 2.6 to 2.7 and Python 3.3 to 3.9.

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
long_description=long_desc,
3030
long_description_content_type='text/markdown',
3131

32-
python_requires='>=2.6, !=3.0.*, !=3.1.*, !=3.2.*, <3.9',
32+
python_requires='>=2.6, !=3.0.*, !=3.1.*, !=3.2.*, <3.10',
3333
setup_requires=['setuptools_scm'],
3434

3535
classifiers=[
@@ -43,6 +43,7 @@
4343
'Programming Language :: Python :: 3.6',
4444
'Programming Language :: Python :: 3.7',
4545
'Programming Language :: Python :: 3.8',
46+
'Programming Language :: Python :: 3.9',
4647
'Programming Language :: Python :: 2',
4748
'Programming Language :: Python :: 2.6',
4849
'Programming Language :: Python :: 2.7',

0 commit comments

Comments
 (0)