Skip to content

Commit

Permalink
Merge pull request #203 from carlosmmatos/arrrg-python
Browse files Browse the repository at this point in the history
Arrrg python
  • Loading branch information
carlosmmatos authored Dec 20, 2024
2 parents ca19acb + 4ceb373 commit 49e5598
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include config/*.ini
include config/*
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ To install as a container:
Falcon Integration Gateway (FIG) is available on the [Python Package Index](https://pypi.org/project/falcon-integration-gateway/).

> [!WARNING]
> Falcon Integration Gateway (FIG) versions below 3.2.2 on PyPI are broken and will not install correctly. Please ensure you install version 3.2.2 or higher from PyPI.
> Falcon Integration Gateway (FIG) versions below 3.2.3 on PyPI are broken and will not install correctly. Please ensure you install version 3.2.3 or higher from PyPI.

1. Install the package:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ version: 0.2.0
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: 3.2.2
appVersion: 3.2.3
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
kind: Secret
descriptor:
type: falcon-integration-gateway
version: '3.2.2'
version: '3.2.3'
description: |-
Falcon Integration Gateway (FIG) forwards threat detection findings from CrowdStrike Falcon
platform to the backend of your choice. This instance forwards detection findings to GCP
Expand Down
2 changes: 1 addition & 1 deletion docs/listings/gke/deployer/schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ x-google-marketplace:

applicationApiVersion: v1beta1

publishedVersion: "3.2.2"
publishedVersion: "3.2.3"
publishedVersionMetadata:
releaseNote: >-
3.1
Expand Down
2 changes: 1 addition & 1 deletion fig/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '3.2.2'
__version__ = '3.2.3'
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
long_description_content_type="text/markdown",
url="https://github.com/crowdstrike/falcon-integration-gateway",
packages=find_packages(),
package_data={'': ['config/*.ini']},
package_data={
'fig': ['../config/*.ini'],
},
include_package_data=True,
install_requires=[
'boto3',
Expand Down

0 comments on commit 49e5598

Please sign in to comment.