From 217d8b00190886ad84211a5687782eaa803e3c77 Mon Sep 17 00:00:00 2001 From: Nicholas Chammas Date: Sat, 11 Jan 2020 12:43:50 -0500 Subject: [PATCH] This is Flintrock 1.0.0 (#300) * add changes for 1.0.0 * OS X -> macOS * update classifiers - flintrock is stable * this is 1.0.0 --- CHANGES.md | 14 +++++++++++++- README.md | 6 +++--- flintrock/__init__.py | 2 +- generate-standalone-package.py | 2 +- setup.py | 5 +---- 5 files changed, 19 insertions(+), 10 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 207f8f8b..085e9ede 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,10 +2,22 @@ ## [Unreleased] -[Unreleased]: https://github.com/nchammas/flintrock/compare/v0.11.0...master +[Unreleased]: https://github.com/nchammas/flintrock/compare/v1.0.0...master Nothing notable yet. +## [1.0.0] - 2020-01-11 + +[1.0.0]: https://github.com/nchammas/flintrock/compare/v0.11.0...v1.0.0 + +### Changed + +* [#297]: Dropped support for Python 3.4. +* [#252]: Flintrock now pins all its transitive dependencies via the files under `requirements/`. This is useful for users who want to build Flintrock themselves. + +[#297]: https://github.com/nchammas/flintrock/pull/297 +[#252]: https://github.com/nchammas/flintrock/pull/252 + ## [0.11.0] - 2018-12-02 [0.11.0]: https://github.com/nchammas/flintrock/compare/v0.10.0...v0.11.0 diff --git a/README.md b/README.md index 5d6f3666..d1dcdf08 100644 --- a/README.md +++ b/README.md @@ -152,10 +152,10 @@ unzip it to a location of your choice, and run the `flintrock` executable inside For example: ```sh -flintrock_version="0.11.0" +flintrock_version="1.0.0" -curl --location --remote-name "https://github.com/nchammas/flintrock/releases/download/v$flintrock_version/Flintrock-$flintrock_version-standalone-OSX-x86_64.zip" -unzip -q -d flintrock "Flintrock-$flintrock_version-standalone-OSX-x86_64.zip" +curl --location --remote-name "https://github.com/nchammas/flintrock/releases/download/v$flintrock_version/Flintrock-$flintrock_version-standalone-macOS-x86_64.zip" +unzip -q -d flintrock "Flintrock-$flintrock_version-standalone-macOS-x86_64.zip" cd flintrock/ # You're good to go! diff --git a/flintrock/__init__.py b/flintrock/__init__.py index fbadf172..c728d723 100644 --- a/flintrock/__init__.py +++ b/flintrock/__init__.py @@ -1,2 +1,2 @@ # See: https://packaging.python.org/en/latest/distributing/#standards-compliance-for-interoperability -__version__ = '1.0.0.dev0' +__version__ = '1.0.0' diff --git a/generate-standalone-package.py b/generate-standalone-package.py index 8cbdd326..c4613ea6 100644 --- a/generate-standalone-package.py +++ b/generate-standalone-package.py @@ -10,7 +10,7 @@ if __name__ == '__main__': operating_system = platform.system() if operating_system.lower() == 'darwin': - operating_system = 'OSX' + operating_system = 'macOS' machine_type = platform.machine() subprocess.run( diff --git a/setup.py b/setup.py index cf8d303c..c2ae01fb 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ # See: https://pypi.python.org/pypi?%3Aaction=list_classifiers classifiers=[ - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Intended Audience :: Science/Research', @@ -34,9 +34,6 @@ 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3 :: Only', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', ], keywords=['Apache Spark'],