Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

loosen dependency ranges #1615

Merged
merged 6 commits into from
Jul 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/deploy_docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ on:
- 'master'
- 'main'
paths:
- '.github/workflows/*'
- 'docs/*'
- 'docs/**/*'
workflow_dispatch:

permissions:
Expand Down
38 changes: 0 additions & 38 deletions .github/workflows/npm-publish.yml

This file was deleted.

8 changes: 4 additions & 4 deletions .github/workflows/test_emanpy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@ name: Test e-Manifest Python Package
on:
push:
paths:
- 'e-manifest-py/*'
- 'emanifest-py/*'
pull_request:
paths:
- 'e-manifest-py/*'
- 'emanifest-py/**/*'

jobs:
test:
name: Test on Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
defaults:
run:
working-directory: e-manifest-py
working-directory: emanifest-py
strategy:
matrix:
python-version: [ "3.10", "3.11" ]
python-version: [ "3.10", "3.11", "3.12" ]

steps:
- name: Checkout Repo
Expand Down
6 changes: 3 additions & 3 deletions docs/src/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# e-Manifest

June 30, 2018. the United States Environmental Protection Agency (USEPA or EPA) launched a national system for tracking
June 30, 2018, the United States Environmental Protection Agency (USEPA or EPA) launched a national system for tracking
hazardous waste shipments electronically, this system, known as "e-Manifest," modernizes the nation’s paper-intensive
process for tracking hazardous waste from cradle to grave while saving valuable time, resources, and dollars for
industry and states.
Expand Down Expand Up @@ -31,7 +31,7 @@ If you're just getting started, you'll likely want to complete these prerequisit

1. [Register in the RCRAInfo test environment](Intro/registration.md) (Pre-Production).
2. Subscribe to the e-Manifest mailing lists
- [e-Manifest General Program mailing list](https://public.govdelivery.com/accounts/USEPAORCR/subscriber/new?topic_id=USEPAORCR_4)
- [e-Manifest developer mailing list](https://public.govdelivery.com/accounts/USEPAORCR/subscriber/new?topic_id=USEPAORCR_9)
- [e-Manifest General Program mailing list](https://public.govdelivery.com/accounts/USEPAORCR/subscriber/new?topic_id=USEPAORCR_4)
- [e-Manifest developer mailing list](https://public.govdelivery.com/accounts/USEPAORCR/subscriber/new?topic_id=USEPAORCR_9)

{{#include ./components/footer.md}}
10 changes: 5 additions & 5 deletions emanifest-py/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ RCRAInfo national electronic hazardous waste management system.
- [Requirements](#requirements)
- [Installation](#installation)
- [Getting Started](#getting-started)
- [Authentication](#authentication)
- [Methods](#methods)
- [Regulator Usage](#regulators)
- [Advanced Usage](#advanced-usage-and-help)
- [Authentication](#authentication)
- [Methods](#methods)
- [Regulator Usage](#regulators)
- [Advanced Usage](#advanced-usage-and-help)
- [Contact](#contact)
- [License](LICENSE.txt)

## Requirements

- Python 3.7
- Python 3.10 or higher

## Installation

Expand Down
12 changes: 4 additions & 8 deletions emanifest-py/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "emanifest"
version = "4.1.0"
version = "4.1.1"
description = "An API utility wrapper for accessing the e-Manifest hazardous waste tracking system maintained by the US Environmental Protection Agency"
readme = "README.md"
authors = [
Expand All @@ -14,14 +14,10 @@ maintainers = [
]

license = { text = "CCO 1.0" }
requires-python = ">=3.7"
requires-python = ">=3.10"
dependencies = [
"requests==2.31.0",
"certifi==2023.5.7",
"requests-toolbelt==1.0.0",
"charset-normalizer==3.1.0",
"idna==3.4",
"urllib3==2.0.2"
"requests<=2.27.0",
"requests-toolbelt<=1.0.0",
]

[project.urls]
Expand Down
8 changes: 1 addition & 7 deletions emanifest-py/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,2 @@
certifi==2023.5.7
charset-normalizer==3.1.0
idna==3.4
packaging==23.1
pep517==0.13.0
requests==2.31.0
requests==2.32.3
requests-toolbelt==1.0.0
urllib3==2.0.3
6 changes: 3 additions & 3 deletions emanifest-py/requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pytest==7.4.0
pytest==8.2.2
ruff==0.5.1
responses==0.25.3
-r requirements.txt
ruff==0.0.284
responses==0.23.3
Loading