Skip to content

Commit

Permalink
This is Flintrock 1.0.0 (#300)
Browse files Browse the repository at this point in the history
* add changes for 1.0.0

* OS X -> macOS

* update classifiers - flintrock is stable

* this is 1.0.0
  • Loading branch information
nchammas authored Jan 11, 2020
1 parent fab97d3 commit 217d8b0
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 10 deletions.
14 changes: 13 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!
Expand Down
2 changes: 1 addition & 1 deletion flintrock/__init__.py
Original file line number Diff line number Diff line change
@@ -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'
2 changes: 1 addition & 1 deletion generate-standalone-package.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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'],

Expand Down

0 comments on commit 217d8b0

Please sign in to comment.