From 274a8b85f73b3553ec57cf619c099f9f5affdd3d Mon Sep 17 00:00:00 2001 From: David Dalpiaz <9003346+daviddalpiaz@users.noreply.github.com> Date: Thu, 22 Aug 2024 21:41:13 -0500 Subject: [PATCH] only current package versions --- .github/workflows/test.yml | 6 +----- pyproject.toml | 8 ++++---- uv.lock | 6 +++--- 3 files changed, 8 insertions(+), 12 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 55584ab..11dbbb0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,10 +14,6 @@ jobs: - "3.10" - "3.11" - "3.12" - package-date: - - "2023-01-01" - - "2024-01-01" - - "3000-01-01" steps: - uses: actions/checkout@v4 - name: Set up uv @@ -30,6 +26,6 @@ jobs: - name: Set up Python ${{ matrix.python-version }} run: uv python install ${{ matrix.python-version }} - name: Install the project - run: uv sync --all-extras --dev --exclude-newer ${{ matrix.package-date }} + run: uv sync --all-extras --dev - name: Test package run: uv run pytest diff --git a/pyproject.toml b/pyproject.toml index 6265a3c..9245a90 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pylahman" -version = "0.1.8" +version = "0.1.9" authors = [ { name="David Dalpiaz", email="dalpiaz2@illinois.edu" }, ] @@ -9,9 +9,9 @@ description = "Python Package for Sean Lahman's Baseball Database" readme = "README.md" requires-python = ">=3.10" dependencies = [ - "pandas>=2.0.0", - "pyarrow>=10.0.1", + "pandas>=2.2.2", "importlib>=1.0.4", + "pyarrow>=17.0.0", ] [project.urls] @@ -33,5 +33,5 @@ packages = ["src/pylahman"] [tool.uv] dev-dependencies = [ - "pytest>=7.0.0", + "pytest>=8.3.2", ] diff --git a/uv.lock b/uv.lock index 10ecfa2..9222394 100644 --- a/uv.lock +++ b/uv.lock @@ -185,7 +185,7 @@ wheels = [ [[package]] name = "pylahman" -version = "0.1.8" +version = "0.1.9" source = { editable = "." } dependencies = [ { name = "importlib" }, @@ -201,8 +201,8 @@ dev = [ [package.metadata] requires-dist = [ { name = "importlib", specifier = ">=1.0.4" }, - { name = "pandas", specifier = ">=2.0.0" }, - { name = "pyarrow", specifier = ">=10.0.1" }, + { name = "pandas", specifier = ">=2.2.2" }, + { name = "pyarrow", specifier = ">=17.0.0" }, ] [package.metadata.requires-dev]