Skip to content

Commit

Permalink
build: Remove pip-tools. Add .python-version.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Sep 4, 2024
1 parent 8da30c6 commit 2ce4fe7
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 40 deletions.
11 changes: 5 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,13 @@ repos:
rev: 5.13.2
hooks:
- id: isort
- repo: https://github.com/jazzband/pip-tools
rev: 7.4.1
- repo: https://github.com/astral-sh/uv-pre-commit
rev: 0.4.4
hooks:
- id: pip-compile
name: pip-compile requirements.in
files: ^requirements\.(in|txt)$
args: [requirements.in, -o, requirements.txt, --no-strip-extras]
- id: pip-compile
name: pip-compile requirements_dev.in
files: ^requirements(_dev)?\.(in|txt)$
args: [requirements_dev.in]

args: [requirements_dev.in, -o, requirements_dev.txt, --no-strip-extras]
files: ^requirements_dev\.(in|txt)$
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.10
18 changes: 8 additions & 10 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
#
# This file is autogenerated by pip-compile with Python 3.11
# by the following command:
#
# pip-compile
#
# This file was autogenerated by uv via the following command:
# uv pip compile requirements.in -o requirements.txt --no-strip-extras
attrs==23.1.0
# via
# automat
Expand Down Expand Up @@ -87,7 +83,7 @@ pytz==2023.3
# via pandas
queuelib==1.6.2
# via scrapy
requests==2.32.0
requests==2.32.3
# via
# requests-file
# tldextract
Expand All @@ -97,6 +93,11 @@ scrapy==2.11.2
# via -r requirements.in
service-identity==24.1.0
# via scrapy
setuptools==74.1.1
# via
# incremental
# scrapy
# zope-interface
six==1.16.0
# via
# automat
Expand All @@ -121,6 +122,3 @@ zope-interface==6.0
# via
# scrapy
# twisted

# The following packages are considered to be unsafe in a requirements file:
# setuptools
1 change: 0 additions & 1 deletion requirements_dev.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ coverage[toml]
coveralls
flake8
isort
pip-tools
pre-commit
pytest
pytest-cov
34 changes: 11 additions & 23 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
#
# This file is autogenerated by pip-compile with Python 3.11
# by the following command:
#
# pip-compile requirements_dev.in
#
# This file was autogenerated by uv via the following command:
# uv pip compile requirements_dev.in -o requirements_dev.txt --no-strip-extras
attrs==23.1.0
# via
# -r requirements.txt
Expand All @@ -16,8 +12,6 @@ automat==22.10.0
# twisted
black==24.3.0
# via -r requirements_dev.in
build==0.10.0
# via pip-tools
certifi==2024.7.4
# via
# -r requirements.txt
Expand All @@ -33,9 +27,7 @@ charset-normalizer==3.2.0
# -r requirements.txt
# requests
click==8.1.6
# via
# black
# pip-tools
# via black
constantly==15.1.0
# via
# -r requirements.txt
Expand Down Expand Up @@ -126,7 +118,6 @@ packaging==23.1
# via
# -r requirements.txt
# black
# build
# parsel
# pytest
# scrapy
Expand All @@ -139,8 +130,6 @@ parsel==1.8.1
# scrapy
pathspec==0.11.2
# via black
pip-tools==7.3.0
# via -r requirements_dev.in
platformdirs==3.10.0
# via
# black
Expand Down Expand Up @@ -178,8 +167,6 @@ pyopenssl==24.0.0
# via
# -r requirements.txt
# scrapy
pyproject-hooks==1.0.0
# via build
pytest==7.4.0
# via
# -r requirements_dev.in
Expand All @@ -200,7 +187,7 @@ queuelib==1.6.2
# via
# -r requirements.txt
# scrapy
requests==2.32.0
requests==2.32.3
# via
# -r requirements.txt
# coveralls
Expand All @@ -216,6 +203,13 @@ service-identity==24.1.0
# via
# -r requirements.txt
# scrapy
setuptools==74.1.1
# via
# -r requirements.txt
# incremental
# nodeenv
# scrapy
# zope-interface
six==1.16.0
# via
# -r requirements.txt
Expand Down Expand Up @@ -250,14 +244,8 @@ w3lib==2.1.2
# itemloaders
# parsel
# scrapy
wheel==0.41.1
# via pip-tools
zope-interface==6.0
# via
# -r requirements.txt
# scrapy
# twisted

# The following packages are considered to be unsafe in a requirements file:
# pip
# setuptools

0 comments on commit 2ce4fe7

Please sign in to comment.