diff --git a/.github/workflows/coverage-diff.yml b/.github/workflows/coverage-diff.yml index 2f982ee2..fec006d3 100644 --- a/.github/workflows/coverage-diff.yml +++ b/.github/workflows/coverage-diff.yml @@ -8,8 +8,8 @@ jobs: coverage-diff: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 with: python-version: "3.9" - name: "Install dependencies" diff --git a/.github/workflows/coverage-report.yml b/.github/workflows/coverage-report.yml index 9faef9dc..d395eafc 100644 --- a/.github/workflows/coverage-report.yml +++ b/.github/workflows/coverage-report.yml @@ -11,8 +11,8 @@ jobs: coverage-report: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 with: python-version: "3.9" - name: "Install dependencies" diff --git a/.github/workflows/functional_tests.yml b/.github/workflows/functional_tests.yml index 2445ac1e..56443e33 100644 --- a/.github/workflows/functional_tests.yml +++ b/.github/workflows/functional_tests.yml @@ -12,8 +12,8 @@ jobs: runs-on: "ubuntu-latest" environment: test steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 with: python-version: "3.9" - name: "Install dependencies" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7e9e6cb0..1bbd86f6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: - python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.10" ] + python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.10" ] steps: - uses: actions/checkout@v3 diff --git a/.releaserc b/.releaserc index 06ea31ba..d47602cb 100644 --- a/.releaserc +++ b/.releaserc @@ -10,93 +10,14 @@ [ "@semantic-release/commit-analyzer", { - "releaseRules": [ - { - "type": "build", - "scope": "deps", - "release": "patch" - }, - { - "type": "docs", - "scope": "README", - "release": "patch" - } - ] + "config": "@fingerprintjs/conventional-changelog-dx-team", + "releaseRules": "@fingerprintjs/conventional-changelog-dx-team/release-rules" } ], [ "@semantic-release/release-notes-generator", { - "preset": "conventionalCommits", - "presetConfig": { - "types": [ - { - "type": "feat", - "section": "Features" - }, - { - "type": "feature", - "section": "Features" - }, - { - "type": "fix", - "section": "Bug Fixes" - }, - { - "type": "perf", - "section": "Performance Improvements" - }, - { - "type": "revert", - "section": "Reverts" - }, - { - "type": "docs", - "scope": "README", - "section": "Documentation" - }, - { - "type": "build", - "scope": "deps", - "section": "Build System" - }, - { - "type": "docs", - "section": "Documentation", - "hidden": true - }, - { - "type": "style", - "section": "Styles", - "hidden": true - }, - { - "type": "chore", - "section": "Miscellaneous Chores", - "hidden": true - }, - { - "type": "refactor", - "section": "Code Refactoring", - "hidden": true - }, - { - "type": "test", - "section": "Tests", - "hidden": true - }, - { - "type": "build", - "section": "Build System", - "hidden": true - }, - { - "type": "ci", - "section": "Continuous Integration", - "hidden": true - } - ] - } + "config": "@fingerprintjs/conventional-changelog-dx-team", } ], "@semantic-release/changelog", diff --git a/README.md b/README.md index 1aa5e8cc..4addfb46 100644 --- a/README.md +++ b/README.md @@ -1,34 +1,20 @@

- - - Fingerprint logo + + + Fingerprint logo

- - PyPI - - - coverage - - - CI badge - - - CI badge - - - CI badge - - - - - - Discord server - + PyPI + coverage + CI badge + CI badge + CI badge + MIT License + Discord server

# Fingerprint Pro Server Python SDK @@ -47,7 +33,7 @@ This Python package is automatically generated by the [Swagger Codegen](https:// The following Python versions are supported: -- Python >= 3.6 +- Python >= 3.8 ## Installation & Usage ### pip install diff --git a/res/logo_dark.svg b/res/logo_dark.svg deleted file mode 100644 index 32ce509c..00000000 --- a/res/logo_dark.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/res/logo_light.svg b/res/logo_light.svg deleted file mode 100644 index 6b7ced24..00000000 --- a/res/logo_light.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/setup.py b/setup.py index 15016063..d44efd56 100644 --- a/setup.py +++ b/setup.py @@ -57,10 +57,11 @@ 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python', - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Programming Language :: Python :: Implementation :: PyPy', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Security', diff --git a/template/README.mustache b/template/README.mustache index 72a8a632..40484b9a 100644 --- a/template/README.mustache +++ b/template/README.mustache @@ -1,34 +1,20 @@

- - - Fingerprint logo + + + Fingerprint logo

- - PyPI - - - coverage - - - CI badge - - - CI badge - - - CI badge - - - - - - Discord server - + PyPI + coverage + CI badge + CI badge + CI badge + + Discord server

# Fingerprint Pro Server Python SDK @@ -53,7 +39,7 @@ For more information, please visit [{{{infoUrl}}}]({{{infoUrl}}}) The following Python versions are supported: -- Python >= 3.6 +- Python >= 3.8 ## Installation & Usage ### pip install diff --git a/template/setup.mustache b/template/setup.mustache index 9ad460a7..cc8cbf72 100644 --- a/template/setup.mustache +++ b/template/setup.mustache @@ -58,10 +58,11 @@ setup( 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python', - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.12', 'Programming Language :: Python :: Implementation :: PyPy', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Security',