Skip to content

Commit

Permalink
Remove duplicate list of requirements
Browse files Browse the repository at this point in the history
And bump the PyPI package version
  • Loading branch information
kralka committed Dec 2, 2024
1 parent 00bcc55 commit 57c55ee
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 21 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/maturin_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ jobs:
python3 -m venv .venv
source .venv/bin/activate
pip install sedpack --find-links dist --force-reinstall
pip install --require-hashes --no-deps -r requirements.txt # TODO workaround
pip install pytest
pytest
- name: pytest
Expand All @@ -71,7 +70,6 @@ jobs:
pip3 install -U pip pytest
run: |
set -e
pip3 install --require-hashes --no-deps -r requirements.txt # TODO workaround
pip3 install sedpack --find-links dist --force-reinstall
pytest
Expand Down
18 changes: 1 addition & 17 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,23 +31,7 @@ classifiers = [
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dynamic = ["version"]
dependencies = [
"aiofiles",
"asyncstdlib",
"flatbuffers",
"lz4",
"numpy",
"perfcounters",
"pydantic",
"pytest",
"pytest-asyncio",
"schema",
"semver",
"tabulate",
"tensorflow",
"termcolor",
"tqdm",
]
dependencies = {file = ["requirements.txt"]}

[project.optional-dependencies]

Expand Down
2 changes: 1 addition & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sedpack_rs"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
description = "Rust bindings for sedpack a general ML dataset package"
authors = [
Expand Down
2 changes: 1 addition & 1 deletion src/sedpack/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
Format: MAJOR.MINOR.PATCH (see https://pypi.org/project/semver/ for more
possibilities)
"""
__version__ = "0.0.6"
# The version of this package is defined by rust/Cargo.toml

0 comments on commit 57c55ee

Please sign in to comment.