Skip to content

Commit

Permalink
Fix test automation, bump up version number (#45)
Browse files Browse the repository at this point in the history
Fix architecture and bump up the version number

* Fix test automation, bump up the version number
* Error on unsupported architecture
* Fix typo
* Workaround for x86_64 architecture
* Syntax fix for automation tests
  • Loading branch information
palankai committed Aug 3, 2022
1 parent 096ff44 commit 0230c7a
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.5, 3.6, 3.7, 3.8]
python-version: ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v1
Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.md
Expand Up @@ -6,6 +6,24 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [1.1.2] - 2022-08-03

### Changed

+ Removed support of python 3.5
+ Test automation runs for python 2.7, 3.6, 3.7, 3.8, 3.9, 3.10

### Fixed

+ [#44][p44] Upgraded fzf to work on mac os monterey and ARM architecture by @epoplavskis

+ [#45][p45] Fix tests and bump up the version number by @palankai

[p44]: https://github.com/pmazurek/aws-fuzzy-finder/pull/44

[p45]: https://github.com/pmazurek/aws-fuzzy-finder/pull/45


## [1.1.1] - 2021-02-24

### Added
Expand Down
5 changes: 5 additions & 0 deletions aws_fuzzy_finder/settings.py
Expand Up @@ -27,6 +27,11 @@
arch = 'amd64'
elif platform.processor() == 'arm':
arch = 'arm64'
elif platform.processor() == 'x86_64':
arch = 'amd64'
else:
print('Architecture ({}) is currently not supported'.format(platform.processor()))
exit(1)

if sys.platform.startswith('linux'):
system = 'linux'
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -2,10 +2,10 @@

setup(
name='aws-fuzzy-finder',
version='1.1.1',
version='1.1.2',
url='https://github.com/pmazurek/aws-fuzzy-finder',
description='SSH into AWS instances using fuzzy search through tags.',
download_url='https://github.com/pmazurek/aws-fuzzy-finder/tarball/v1.1.1',
download_url='https://github.com/pmazurek/aws-fuzzy-finder/tarball/v1.1.2',
author='Piotr Mazurek, Daria Rudkiewicz',
keywords=['aws', 'ssh', 'fuzzy', 'ec2'],
packages=['aws_fuzzy_finder'],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py27, py34, py35, py36, py37
envlist = python2.7, python3.6, python3.7, python3.8, python3.9, python3.10

[testenv]
commands = py.test
Expand Down

0 comments on commit 0230c7a

Please sign in to comment.