Skip to content

Commit 217d8b0

Browse files
authored
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
1 parent fab97d3 commit 217d8b0

File tree

5 files changed

+19
-10
lines changed

5 files changed

+19
-10
lines changed

CHANGES.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,22 @@
22

33
## [Unreleased]
44

5-
[Unreleased]: https://github.com/nchammas/flintrock/compare/v0.11.0...master
5+
[Unreleased]: https://github.com/nchammas/flintrock/compare/v1.0.0...master
66

77
Nothing notable yet.
88

9+
## [1.0.0] - 2020-01-11
10+
11+
[1.0.0]: https://github.com/nchammas/flintrock/compare/v0.11.0...v1.0.0
12+
13+
### Changed
14+
15+
* [#297]: Dropped support for Python 3.4.
16+
* [#252]: Flintrock now pins all its transitive dependencies via the files under `requirements/`. This is useful for users who want to build Flintrock themselves.
17+
18+
[#297]: https://github.com/nchammas/flintrock/pull/297
19+
[#252]: https://github.com/nchammas/flintrock/pull/252
20+
921
## [0.11.0] - 2018-12-02
1022

1123
[0.11.0]: https://github.com/nchammas/flintrock/compare/v0.10.0...v0.11.0

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,10 +152,10 @@ unzip it to a location of your choice, and run the `flintrock` executable inside
152152
For example:
153153

154154
```sh
155-
flintrock_version="0.11.0"
155+
flintrock_version="1.0.0"
156156

157-
curl --location --remote-name "https://github.com/nchammas/flintrock/releases/download/v$flintrock_version/Flintrock-$flintrock_version-standalone-OSX-x86_64.zip"
158-
unzip -q -d flintrock "Flintrock-$flintrock_version-standalone-OSX-x86_64.zip"
157+
curl --location --remote-name "https://github.com/nchammas/flintrock/releases/download/v$flintrock_version/Flintrock-$flintrock_version-standalone-macOS-x86_64.zip"
158+
unzip -q -d flintrock "Flintrock-$flintrock_version-standalone-macOS-x86_64.zip"
159159
cd flintrock/
160160

161161
# You're good to go!

flintrock/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# See: https://packaging.python.org/en/latest/distributing/#standards-compliance-for-interoperability
2-
__version__ = '1.0.0.dev0'
2+
__version__ = '1.0.0'

generate-standalone-package.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
if __name__ == '__main__':
1111
operating_system = platform.system()
1212
if operating_system.lower() == 'darwin':
13-
operating_system = 'OSX'
13+
operating_system = 'macOS'
1414
machine_type = platform.machine()
1515

1616
subprocess.run(

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
# See: https://pypi.python.org/pypi?%3Aaction=list_classifiers
2222
classifiers=[
23-
'Development Status :: 4 - Beta',
23+
'Development Status :: 5 - Production/Stable',
2424

2525
'Intended Audience :: Developers',
2626
'Intended Audience :: Science/Research',
@@ -34,9 +34,6 @@
3434

3535
'Programming Language :: Python :: 3',
3636
'Programming Language :: Python :: 3 :: Only',
37-
'Programming Language :: Python :: 3.5',
38-
'Programming Language :: Python :: 3.6',
39-
'Programming Language :: Python :: 3.7',
4037
],
4138
keywords=['Apache Spark'],
4239

0 commit comments

Comments
 (0)