-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: direct support for feather, parquet, and json
- Loading branch information
1 parent
c8ee847
commit bb990ff
Showing
18 changed files
with
417 additions
and
338 deletions.
There are no files selected for viewing
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,10 +1,13 @@ | ||
version: 2 | ||
# see options in https://docs.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates | ||
updates: | ||
- package-ecosystem: "pip" | ||
directory: "/" | ||
- package-ecosystem: pip | ||
directory: / | ||
schedule: | ||
interval: "weekly" | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
interval: weekly | ||
labels: ["kind: infrastructure"] | ||
- package-ecosystem: github-actions | ||
directory: / | ||
schedule: | ||
interval: "weekly" | ||
interval: weekly | ||
labels: ["kind: infrastructure"] |
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
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,20 +1,19 @@ | ||
minimum_pre_commit_version: 2.9.0 | ||
minimum_pre_commit_version: 2.10.0 | ||
|
||
repos: | ||
- repo: meta | ||
hooks: | ||
- id: check-hooks-apply | ||
- repo: 'https://github.com/psf/black' | ||
rev: 20.8b1 | ||
hooks: | ||
- id: black | ||
- repo: 'https://github.com/pre-commit/pre-commit-hooks' | ||
rev: v3.4.0 | ||
hooks: | ||
- id: check-symlinks | ||
- id: check-case-conflict | ||
- id: fix-byte-order-marker | ||
- id: end-of-file-fixer | ||
- id: check-merge-conflict | ||
- id: debug-statements | ||
- id: check-builtin-literals | ||
- id: check-toml | ||
- id: check-json | ||
- id: check-yaml |
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,9 +1,27 @@ | ||
# Contributing | ||
|
||
[New issues](https://github.com/dmyersturnbull/typed-dfs/issues) and pull requests are welcome. | ||
Typed-Dfs is licensed under the [Apache License, version 2.0](https://www.apache.org/licenses/LICENSE-2.0). | ||
Typed-dfs is licensed under the | ||
[Apache License, version 2.0](https://www.apache.org/licenses/LICENSE-2.0). | ||
New issues and pull requests are welcome. | ||
Feel free to direct a question to the authors by creating an [issue with the _question_ tag](https://github.com/dmyersturnbull/tyrannosaurus/issues/new?assignees=&labels=kind%3A+question&template=question.md). | ||
Contributors are asked to abide by both the [GitHub community guidelines](https://docs.github.com/en/github/site-policy/github-community-guidelines) | ||
and the [Contributor Code of Conduct, version 2.0](https://www.contributor-covenant.org/version/2/0/code_of_conduct/). | ||
|
||
##### For pull requests: | ||
If you can, please update `CHANGELOG.md` and add your name to the contributors in `pyproject.toml`. | ||
Then run `tyrannosaurus sync`. | ||
#### Pull requests | ||
|
||
Please update `CHANGELOG.md` and add your name to the contributors in `pyproject.toml` | ||
so that you’re credited. Run `poetry lock` and `tyrannosaurus sync` to sync metadata. | ||
Feel free to make a draft pull request and solicit feedback from the authors. | ||
|
||
#### Publishing a new version | ||
|
||
1. Bump the version in `tool.poetry.version` in `pyproject.toml`, following | ||
[Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
2. Run `tyrannosaurus sync` so that the Poetry lock file is up-to-date | ||
and metadata are synced to pyproject.toml. | ||
3. Create a [new release](https://github.com/dmyersturnbull/typed-dfs/releases/new) | ||
with both the name and tag set to something like `v1.4.13` (keep the _v_). | ||
4. An hour later, check that the *publish on release creation* | ||
[workflow](https://github.com/dmyersturnbull/typed-dfs/actions) passes | ||
and that the PyPi, Docker Hub, and GitHub Package versions are updated as shown in the | ||
shields on the readme. |
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.