Skip to content

Commit 0c69185

Browse files
authored
Remove duplicate list of requirements (#74)
And bump the PyPI package version
1 parent 00bcc55 commit 0c69185

File tree

7 files changed

+175
-193
lines changed

7 files changed

+175
-193
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ activated the virtual environment.
4545

4646
Install requirements: `pip install --require-hashes -r base-tooling-requirements.txt`
4747

48-
Update: `pip-compile requirements.in --generate-hashes --upgrade` and commit requirements.txt.
48+
Update: `pip-compile pyproject.toml --generate-hashes --upgrade` and commit requirements.txt.
4949

5050
#### Package install
5151

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ dependencies = [
4747
"tensorflow",
4848
"termcolor",
4949
"tqdm",
50+
"xxhash",
51+
"zstandard",
5052
]
5153

5254
[project.optional-dependencies]

requirements.in

Lines changed: 0 additions & 17 deletions
This file was deleted.

requirements.txt

Lines changed: 167 additions & 172 deletions
Large diffs are not rendered by default.

rust/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sedpack_rs"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55
description = "Rust bindings for sedpack a general ML dataset package"
66
authors = [

src/sedpack/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,6 @@
1616
Format: MAJOR.MINOR.PATCH (see https://pypi.org/project/semver/ for more
1717
possibilities)
1818
"""
19-
__version__ = "0.0.6"
19+
# The version of this package is defined by rust/Cargo.toml but mypy does not
20+
# see that.
21+
__version__ = "0.0.7"

0 commit comments

Comments
 (0)