-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Upgrade pre-commit dependencies * Rename codecov config file * Update manifest file * Update tests configuration * Migrate to pyproject.toml * Update requirements files * Add make rules for pip-compile commands * Unpin mysqlclient and requests versions * Add GitHub workflow for uploading to PyPI * Bump version
- Loading branch information
1 parent
62b64a0
commit 907c599
Showing
21 changed files
with
353 additions
and
131 deletions.
There are no files selected for viewing
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[flake8] | ||
exclude = .tox, .git, __pycache__, .cache, build, dist, *.pyc, *.egg-info, .eggs | ||
# Error codes: | ||
# - https://flake8.pycqa.org/en/latest/user/error-codes.html | ||
# - https://pycodestyle.pycqa.org/en/latest/intro.html#error-codes | ||
# - https://github.com/PyCQA/flake8-bugbear#list-of-warnings | ||
# | ||
# E203: whitespace before `,`, `;` or `:` | ||
# E402: module level import not at top of file | ||
# E501: line too long | ||
# W503: line break before binary operator | ||
ignore = | ||
E203, | ||
E402, | ||
E501, | ||
W503 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
name: "Release" | ||
on: "workflow_dispatch" | ||
jobs: | ||
build: | ||
name: "Build" | ||
runs-on: "ubuntu-22.04" | ||
steps: | ||
- name: "Check out repository" | ||
uses: "actions/checkout@v4" | ||
- name: "Set up Python" | ||
uses: "actions/setup-python@v4" | ||
with: | ||
python-version: "3.9" | ||
- name: "Build distribution packages" | ||
run: make package-check | ||
- name: "Save distribution directory" | ||
uses: "actions/upload-artifact@v3" | ||
with: | ||
name: "distribution" | ||
path: | | ||
dist | ||
upload: | ||
name: "Upload" | ||
needs: "build" | ||
runs-on: "ubuntu-22.04" | ||
environment: "release" | ||
permissions: | ||
id-token: "write" | ||
steps: | ||
- name: "Restore distribution directory" | ||
uses: "actions/download-artifact@v3" | ||
with: | ||
name: "distribution" | ||
path: | | ||
dist | ||
- name: "Upload distribution packages to PyPI" | ||
uses: "pypa/gh-action-pypi-publish@release/v1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,23 @@ | ||
repos: | ||
- repo: https://github.com/asottile/pyupgrade | ||
rev: v3.10.1 | ||
rev: v3.15.0 | ||
hooks: | ||
- id: pyupgrade | ||
args: [--py3-plus, --py36-plus] | ||
args: [--py38-plus] | ||
- repo: https://github.com/asottile/reorder_python_imports | ||
rev: v3.10.0 | ||
rev: v3.12.0 | ||
hooks: | ||
- id: reorder-python-imports | ||
args: [--py3-plus, --py36-plus] | ||
args: [--py38-plus] | ||
- repo: https://github.com/psf/black | ||
rev: "23.7.0" | ||
rev: "23.10.1" | ||
hooks: | ||
- id: black | ||
args: [--safe, --quiet] | ||
language_version: python3 | ||
- repo: https://github.com/pycqa/flake8 | ||
rev: "6.1.0" | ||
hooks: | ||
- id: flake8 | ||
language_version: python3 | ||
additional_dependencies: | ||
- flake8-bugbear==23.9.16 | ||
- flake8-comprehensions==3.14.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
include LICENSE | ||
include LICENSE | ||
include README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,33 @@ | ||
.PHONY: clean package package-deps package-source package-upload package-wheel | ||
.DEFAULT_GOAL := help | ||
|
||
package-deps: | ||
pip install --upgrade twine wheel | ||
.PHONY: clean package package-deps package-distribution package-upload pip-compile pip-upgrade | ||
|
||
package-source: | ||
python setup.py sdist | ||
package-deps: ## Upgrade dependencies for packaging | ||
python3 -m pip install --upgrade build twine | ||
|
||
package-wheel: package-deps | ||
python setup.py bdist_wheel | ||
package-distribution: package-deps ## Create distribution packages | ||
python3 -m build | ||
|
||
package-upload: package-deps package-source package-wheel | ||
twine upload dist/* --repository-url https://upload.pypi.org/legacy/ | ||
package-check: package-distribution ## Check the distribution is valid | ||
python3 -m twine check --strict dist/* | ||
|
||
package-upload: package-deps package-check ## Upload distribution packages | ||
python3 -m twine upload dist/* --repository-url https://upload.pypi.org/legacy/ | ||
|
||
package: package-upload | ||
|
||
clean: | ||
clean: ## Clean the package directory | ||
rm -rf agentarchives.egg-info/ | ||
rm -rf build/ | ||
rm -rf dist/ | ||
|
||
pip-compile: ## Compile pip requirements | ||
pip-compile --allow-unsafe --output-file=requirements.txt pyproject.toml | ||
pip-compile --allow-unsafe --extra=dev --output-file=requirements-dev.txt pyproject.toml | ||
|
||
pip-upgrade: ## Upgrade pip requirements | ||
pip-compile --allow-unsafe --upgrade --output-file=requirements.txt pyproject.toml | ||
pip-compile --allow-unsafe --upgrade --extra=dev --output-file=requirements-dev.txt pyproject.toml | ||
|
||
help: ## Print this help message | ||
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
DEFAULT_TIMEOUT = 10 | ||
|
||
__version__ = "0.9.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.