Skip to content

Commit

Permalink
Package for Python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
dflook committed Oct 15, 2020
1 parent 5f35bb7 commit 21ebfad
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 3,542 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,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).

## [2.3.2] - 2020-10-03
## [2.4.0] - Unreleased

### Added
- Support for Python 3.9, including:
- PEP 614 - Relaxing Grammar Restrictions On Decorators

## [2.3.2] - 2020-10-11

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

[2.3.2]: https://github.com/dflook/python-minifier/compare/2.3.2...2.4.0
[2.3.2]: https://github.com/dflook/python-minifier/compare/2.3.1...2.3.2
[2.3.1]: https://github.com/dflook/python-minifier/compare/2.3.0...2.3.1
[2.3.0]: https://github.com/dflook/python-minifier/compare/2.2.1...2.3.0
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018 Daniel Flook
Copyright (c) 2020 Daniel Flook

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Transforms Python source code into it's most compact representation.

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

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

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

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

## Usage

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

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

Copyright (c) 2018 Daniel Flook
Copyright (c) 2020 Daniel Flook
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# -- Project information -----------------------------------------------------

project = 'Python Minifier'
copyright = '2018, Daniel Flook'
copyright = '2020, Daniel Flook'
author = 'Daniel Flook'

from pkg_resources import get_distribution, DistributionNotFound
Expand Down
2 changes: 1 addition & 1 deletion docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ To install python-minifier use pip:
Note that python-minifier depends on the python interpreter for parsing source code, so install using a version of python appropriate for your source.

python-minifier runs with and can minify code written for Python 2.6 to 2.7 and Python 3.3 to 3.8.
python-minifier runs with and can minify code written for Python 2.6 to 2.7 and Python 3.3 to 3.9.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
long_description=long_desc,
long_description_content_type='text/markdown',

python_requires='>=2.6, !=3.0.*, !=3.1.*, !=3.2.*, <3.9',
python_requires='>=2.6, !=3.0.*, !=3.1.*, !=3.2.*, <3.10',
setup_requires=['setuptools_scm'],

classifiers=[
Expand All @@ -43,6 +43,7 @@
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
Expand Down
Loading

0 comments on commit 21ebfad

Please sign in to comment.